The size of the superscripts (2) should be smaller, how can I fix that?
\documentclass[border=5pt]{standalone}
\usepackage{sansmath}
\usepackage{tikz,pgfplots}
\usetikzlibrary{angles, arrows.meta, % new
quotes} % new
\definecolor{lava}{rgb}{0.81, 0.06, 0.13}
\definecolor{myblue}{rgb}{0.0, 0.30, 0.60}
\usepackage{amsmath,amsthm, amssymb, latexsym}
%ENEC250071
\begin{document}
\begin{tikzpicture}[
ang/.style = {draw, Straight Barb-, anchor=west,
angle radius = 8mm, angle eccentricity=1.25},
arr/.style = {cap=round,-Straight Barb},
dot/.style = {circle, fill, minimum size=3pt,inner sep=0pt},
every edge quotes/.style = {auto, font=\footnotesize, sloped},
every label/.style = {inner sep=1pt},
font=\sffamily ]
% defining radius points
\coordinate (O) at (0,0);
\node (n2) at (120:2.5) {};
\node (n1) at ( -120:2.5) {};
\node (n3) at (180:2.5) {};
\node (n4) at (0:2.5) {};
\path[draw=black, thick, arr]
(O) to (n2.center);
\path[draw=black, thick, arr]
(O) to (n1.center);
\path[draw=black, thick, arr,dashed]
(n1) to (n3.center);
\path[draw=black, thick, arr,dashed]
(n2) to (n3.center);
\path[draw=black, thick, arr,dashed,lava]
(O) to (n3.center);
\path[draw=black, thick, arr,dashed,myblue]
(O) to (n4.center);
\node[above] (n3) at ( 180:1.25) {\tiny $ \mathbf{I}{b}+\mathbf{I}{c }$};
\node[] (n0) at ( 0:2.7) {};
\node[] (ny) at ( 90:2.7) {};
% vector
\path[draw=black]
(O) to (n0.center);
\path[draw=black]
(O) to (ny.center);
\path[draw=black]
(O) to (n0.center);
\node[right] () at ( 0:2.75) {\tiny X};
\node[above] () at ( 90:2.75) {\tiny Y};
% angle
\pic [ang, -Straight Barb, "\tiny $120^\circ$"] {angle = n0--O--n2};
\pic [ang, Straight Barb-, "\tiny $-120^\circ$"] {angle = n1--O--n0};
\node[below] at (n1) {\tiny $\mathbf{I}{b}$};
\node[above] at (n2) {\tiny $\mathbf{I}{c}$};
\node[] at (2.5,2.5){
$\tiny \begin{aligned}
\Vert \mathbf{I}_a \Vert^2=&\Vert \mathbf{I}_b \Vert^2+2\mathbf{I}_b . \mathbf{I}_c+\Vert \mathbf{I}_b \Vert^2,\
=&\Vert \mathbf{I}_b \Vert^2+2 \cos(120^\circ) \Vert \mathbf{I}_b \Vert \Vert \mathbf{I}_c \Vert+\Vert \mathbf{I}_b \Vert^2 ,\
=&\mathbf{I}^2+2 \cos(120^\circ) (\mathbf{I})(\mathbf{I})+\mathbf{I}^2 ,\
=&\mathbf{I}^2-\mathbf{I}^2+\mathbf{I}^2 ,\
=&\mathbf{I}^2, \
\Vert \mathbf{I}_a \Vert =&\mathbf{I}.\
\end{aligned}$ };
\end{tikzpicture}
\end{document}
