I want to have something that looks like this:

But I'm not sure how to get it as the left column should have 2 rows and the right 4 rows. So I want the two to be independent.
\documentclass[border=3mm]{standalone}
\usepackage{array,xcolor,multirow}
\colorlet{darkred}{red!80!black}
\begin{document}
\begin{tabular}{rl}
\multirow{2}{*}{\huge\bf Hello} & {\color{darkred}\bf text\ldots}\\
& {\color{darkred}\bf text\ldots}\\
\multirow{2}{*}{\huge\bf World!!} & {\color{darkred}\bf text\ldots}\\
& {\color{darkred}\bf text\ldots}
\end{tabular}
\end{document}