Here is my current slide:

\documentclass{beamer}
\usepackage[english]{babel}
\usepackage{tikz}
\usetikzlibrary{backgrounds}
\begin{document}
\begin{frame}
\frametitle{My slide}
\begin{tikzpicture}[framed, background rectangle/.style={thick, draw=black, top color=blue!50, rounded corners}]
\node (step1) at (0, 0) {step 1};
\node (step2) at (0, -3) {step 2};
\end{tikzpicture}
\end{frame}
\end{document}
I would like to write something right next to "step 1" and something else right next to "step 2". I would like to write these two things out of the blue frame. Can you help me?


