I'm trying to add a Scrum user story to a latex file, but the page break at the end of the page breaks the flow. For example, I am trying to achieve:

However, when the columns reach a page break, they become distorted and become like this:
This is basically what I have in my latex file:
\begin{multicols}{2}
[
\textbf{Priority:} \textit{5}\hfill \textbf{Size Estimate:} \textit{2}
\linebreak As a \textit{developer}, I want to \textit{implement a basic local database with a single table} in order to \textit{have a basis for storing more information and expanding it at a later point}.
]
\textbf{Set of Tasks}
\begin{itemize}
\item Research the setup process for a local database.
\item Create database.
\item Add restrictions to the database.
\item Add new entry in the form of a table.
\end{itemize}
\columnbreak
\textbf{Acceptance Criteria}
\begin{itemize}
\itemsep0em
\item Test the functionality of the table.
\item Test restrictions concerning password, access and privileges.
\item Successful queries to the table with simple INSERT, SELECT, UPDATE and DELETE operations.
\end{itemize}
\end{multicols}
I have tried to bypass it by creating a table, but tables seem to not accept itemized sections. Is there any way to bypass this pagebreak or any other solution to this problem? Any help would be highly appreciated!
\enlargethispage{1.5\baselineskip}just after the heading "set of tasks". you will probably have to do the same for the next column, as the content is just a bit larger. (which is why i suggested1.5\baselineskipinstead of just 1.) – barbara beeton Apr 22 '17 at 18:49