I want to create a titlepage with tikz and therefore I have a node within a title and a subtitle after a line-break. The problem now is, that something is wrong with the indentation, as you can see in the following picture. Both texts should start at the same position.

The compileable code example:
\documentclass[a5paper,11pt,twocolumn,parskip=half,parindent=none]{scrbook}
\usepackage[ngerman,german]{babel}
\usepackage[utf8x]{inputenc}
\usepackage{lmodern}
\selectlanguage{german}
\usepackage{tikz}
\usepackage{color}
\usepackage{geometry}
\usepackage{graphicx}
\usepackage{helvet}
\definecolor{fsblue}{rgb}{0.17,0.24,0.31}
\definecolor{fsorange}{rgb}{1,0.44,0.0}
\renewcommand{\familydefault}{\sfdefault}
\geometry{top=25mm, left=15mm, right=12mm, bottom=20mm}
\begin{document}
\begin{tikzpicture}[remember picture,overlay,shift={(current page.south west)}]
\node [
fill=fsorange,
inner xsep=1em,
minimum height=1cm,
text width={\paperheight},
anchor=north west,
rotate=90
] at (current page.south west) {Text Text};
\node [
fill=fsblue,
inner xsep=1.5cm,
minimum height=3cm,
text width={\paperwidth-1cm},
anchor=south west
] at (1cm,13cm) {\color{white}\bfseries\Huge B Text one\\\normalsize B Text two};
\end{tikzpicture}
\end{document}


\Huge\@titlehead\\%I mean with a percentage sign at the end of the linebreak. – percusse Jul 07 '15 at 20:57\hugefont, but subject is in\normalsize. The boxes (which is what (La)TeX sees) for the initial letters are starting at the same point, but the glyphs themselves are slighlty offset. – Gonzalo Medina Jul 07 '15 at 21:03{\color{white}\bfseries\Huge\frame{B} Text one\\\normalsize\frame{B} Text two};and you will see what I mean. – Gonzalo Medina Jul 07 '15 at 22:12