Ok I am creating a simple CV and in have the following problem. My \linewidth is actually larger than linewith. I tried to add \noident as stated on the following link
overfull hbox despite of width=\linewidth
I attach a minimal example and an image of the produced output where the problem is obvious.
\documentclass{article}
\usepackage{showframe}
\begin{document}
\fboxrule=1pt
\noindent
\fbox{
\begin{minipage}{0.9575\linewidth}
\begin{center}
{\huge \textbf{Curiculum Vitae}} \\ \vspace{0.5cm}
{\LARGE \textbf{My Very Long Name}}
\end{center}
\end{minipage}
}
\noindent
\fbox{
\begin{minipage}{\linewidth}
\begin{center}
{\huge \textbf{Curiculum Vitae}} \\ \vspace{0.5cm}
{\LARGE \textbf{My Very Long Name}}
\end{center}
\end{minipage}
}
\end{document}

