html {
    height: 100%;
}

body {
    background: transparent url(/img/background.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

.hidden{
    display: none;
}

.logo {
    max-width: 100%;
}

.tron {
    position: absolute;
    background-color: #FFF;
    width: 100%;
    padding-top: 35px;
    padding-bottom: 35px;
}

.statuscode {
    font-style: normal;
    font-weight: normal;
    color: #004C99;
    font-size: 350%;
}

.text {
    font-style: normal;
    font-weight: normal;
    color: #004C99;
    font-size: 150%;
}

.vcenter {
    display: flex;
    display: -ms-flexbox;
    display: -webkit-flex;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-direction: row;
    vertical-align: middle;
    align-items: center;
}

.link:link, .link:hover, .link:active, .link:focus, .link:visited {
    color: #004C99;
    text-decoration: underline;
}

@media only screen and (min-width: 480px) {

    .tron {
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }

}


