This is just a proposal; it can serve like a “base“ for further things:
\documentclass[border=5pt,tikz]{standalone}
\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture}
\node[inner sep=2cm] (a) {};
\fill[red] ([xshift=-.5cm]$(a.north west)!.5!(a.north east)$) --
([yshift=-1.5cm,xshift=-.5cm]$(a.north west)!.5!(a.north east)$) --
([yshift=.5cm]$(a.north west)!.5!(a.south west)$) --
([yshift=-.5cm]$(a.north west)!.5!(a.south west)$) --
([xshift=1.5cm,yshift=-.5cm]$(a.north west)!.5!(a.south west)$) --
([xshift=-.5cm]$(a.south west)!.5!(a.south east)$) --
([xshift=.5cm]$(a.south west)!.5!(a.south east)$) --
([yshift=1.5cm,xshift=.5cm]$(a.south west)!.5!(a.south east)$) --
([yshift=-.5cm]$(a.north east)!.5!(a.south east)$) --
([yshift=.5cm]$(a.north east)!.5!(a.south east)$) --
([xshift=-1.5cm,yshift=.5cm]$(a.north east)!.5!(a.south east)$) --
([xshift=.5cm]$(a.north west)!.5!(a.north east)$) --
cycle;
\draw[red!70!black,ultra thick] ([yshift=-.5cm]$(a.north west)!.5!(a.south west)$) --
([xshift=1.5cm,yshift=-.5cm]$(a.north west)!.5!(a.south west)$);
\draw[red!70!black,ultra thick] ([xshift=-.5cm]$(a.south west)!.5!(a.south east)$) --
([xshift=.5cm]$(a.south west)!.5!(a.south east)$) --
([yshift=1.5cm,xshift=.5cm]$(a.south west)!.5!(a.south east)$) --
([yshift=-.5cm]$(a.north east)!.5!(a.south east)$) --
([yshift=.5cm]$(a.north east)!.5!(a.south east)$) --
([xshift=-1.5cm,yshift=.5cm]$(a.north east)!.5!(a.south east)$) --
([xshift=.5cm]$(a.north west)!.5!(a.north east)$);
\end{tikzpicture}
\end{document}
The output:

EDIT: Here are some more examples:
\documentclass[border=5pt,tikz]{standalone}
\usepackage{fourier}
\begin{document}
\begin{tikzpicture}
\node at (0.02,-0.02) {Hier steht ein kurzer Text};
\node[blue!70] at (0,0) {Hier steht ein kurzer Text};
\end{tikzpicture}
\end{document}
Output:

And:
\documentclass[border=5pt,tikz]{standalone}
\usetikzlibrary{backgrounds,calc}
\usepackage{times}
\begin{document}
\begin{tikzpicture}
\node[blue,text width=1.5cm,align=center,draw,fill=white] (a) {\bf\LARGE\TeX\\[3pt]\normalsize Users\\Group};
\draw[blue,shorten >=1.2cm,shorten <=.1cm] ([yshift=6]a.west) -- ([yshift=6]a.east);
\draw[blue,shorten >=1.2cm,shorten <=.1cm] ([yshift=6]a.east) -- ([yshift=6]a.west);
\begin{pgfonlayer}{background}
\fill[blue] ($(a.north west)+(-.1,-.1)$) -- ($(a.south west)+(-.1,-.1)$) -- ($(a.south east)+(-.1,-.1)$) -- ($(a.north east)+(-.1,-.1)$) -- cycle;
\end{pgfonlayer}
\end{tikzpicture}
\end{document}
And here is the output:
