body {
    margin: 0;
    font-family: Calibri;
}

.background {
    background: url(images/homebanner-4153.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    /* z-index: -1; */
}

.header {
    color: white;
    font-size: 30px;
    padding-left: 20px;
    padding-bottom: 20px;
}

span {
    color: #cc0000;
    font-style: italic;
}

.hint {
    font-size: 20px;
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    animation-duration: 5s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}