I have the following issue. In my LaTeX, I use the following formats:
\newtheorem{teo}{Teorema}
\theoremstyle{plain}
\newtheorem{coro}{Corolario}
\newtheorem{defi}{Definici\'on}
\newtheorem{lema}{Lema}
\newtheorem{prop}{Proposici\'on}
\newtheorem{nota}{Nota}
\newtheorem{obs}{Observación}
So when I compile, for example:
\begin{defi}
Un semigrupo es un par $(S,\cdot)$ donde $S$ es un conjunto y $S\times S\to S$ operación asociativa, i.e. $(s_1s_2)s_3=s_1(s_2s_3)~\forall s_1,s_2,s_3\in S$.
\end{defi}
\begin{defi}
Un monoide $(M,\cdot)$ es un semigrupo con un elemento neutro $e\in M$.
\end{defi}
\begin{obs}
El neutro del monoide es único.
\end{obs}
\begin{defi}
Un grupo $G$ es un monoide con inversos: $\forall g\in G~\exists g^{-1}\in G$ tal que $gg^{-1}=g^{-1}g=e$.
\end{defi}
\begin{obs}
El inverso es único.
\end{obs}
\begin{defi}
Un grupo (o semigrupo o monoide) se dice abeliano o conmutativo si $$g_1g_2=g_2g_1~\forall g_1,g_2\in G$$.
\end{defi}
I would like to change the font inside each definition, theorem, observation, etc. Instead of a cursive-wise or italic, I'd use a more standard one. Thank you in advance.

