/*
    Allgemeine eigenen CSS Definitionen.
    Möglichst flach, da man die Bootstrap CSS Definitionen nutzen soll!
*/

body {
    background: url('../img/bg1000.png') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color:#20214f;
    color:#FFF;
}

.fullhigh {
    min-height: 100%;
    height: 100%;
}

/* 
    Funktioniert nur, wenn der umgebene Container 100% Höhe hat!
    Daher muss HTML und BODY die CLASS fullhigh haben!
*/ 
.zentriert {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.outline {
text-shadow:  3px  3px 0px #20214f,
                3px -3px 0px #20214f,
                -3px  3px 0px #20214f,
                -3px -3px 0px #20214f;
}

