.bgimg {
    min-height: 100%;
    min-width: 1024px;
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

@media screen and (max-width: 1024px) {
    img.bg {
        left: 50%;
        margin-left: -512px;
    }
}

body {
    overflow: hidden;
    font-family: 'Open Sans', helvetica, arial, sans-serif;
}

#f {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
}

#fc {
    color: rgba(255, 255, 255, .75);
    text-shadow: 0 0 5px rgba(0, 0, 0, .75);
    text-align: center;
    /*background: rgba(0,0,0,.25);*/
    width: 80%;
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
}

/*
==============================================
fadeIn
==============================================
*/

.fadeIn {
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn;
    animation-duration: .75s;
    -webkit-animation-duration: .75s;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    visibility: visible !important;
}

@keyframes fadeIn {
    0% {
        transform: scale(0);
        opacity: 0.0;
    }
    75% {
        transform: scale(1.1);
        opacity: .75;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@-webkit-keyframes fadeIn {
    0% {
        -webkit-transform: scale(0);
        opacity: 0.0;
    }
    75% {
        -webkit-transform: scale(1.1);
        opacity: .75;
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 1;
    }
}