body {
    padding-top: 10px;
    background: #263435 url(/content/images/Willichslust.jpg) fixed no-repeat center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.title {
    font-family: 'Oleo Script', cursive;
    font-size: 9vw;
    color: #fea;
    text-align: center;
}

.normal-text {
    font-family: 'Oleo Script', cursive;
    font-size: 14pt;
    color: #fea;
}

.headline-text {
    font-family: 'Oleo Script', cursive;
    font-size: 18pt;
    color: #fea;
}

.restricted {
    display: none;
    visibility: hidden;
}

.footer {
    position: fixed;
    bottom: 3px;
    left: 5px;
    font-size: 0.8em;
}

.navbar-default {
    background-color: transparent;
    border-color: transparent;
}
.navbar-default .navbar-nav > .active > a, .navbar-default .navbar-nav > .active > a:hover, .navbar-default .navbar-nav > .active > a:focus, .navbar-default .navbar-nav > li > a:hover, .navbar-default .navbar-nav > li > a:focus {
    color: #fea;
}
.navbar-default .navbar-nav > li > a {
    color: #dc8;
}


#spinner {
    position: fixed;
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    background:rgba(46, 51, 56, 0.7);
    color: #ccc;
    top:0;
    left:0;
}

.spinner {
    display: flex;
    margin: 0 auto;
    font-size: 4em;
}

.gly-spin {
    -webkit-animation: spin 2s infinite linear;
    -moz-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
    0% {
        -moz-transform: rotate(0deg);
    }
    100% {
        -moz-transform: rotate(359deg);
    }
}
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
    }
}
@-o-keyframes spin {
    0% {
        -o-transform: rotate(0deg);
    }
    100% {
        -o-transform: rotate(359deg);
    }
}
@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}