body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body{

    font-size: 100%;
    font-family: futura-pt, sans-serif;
    font-style: normal;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;

}

.full-width-container {
    width: 100%;
    height: 100%;
    background-image: url('img/sky.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: fixed;
}

.logo-container {
    padding: 40px 0 0 0;
    position: relative;
    z-index: 200;
}

.logo-container img{
    max-width: 300px;
}

.center-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
}

.headline-container {
    width: 100%;
}

.headline-container h1, .headline-container h2{
    font-family: futura-pt, sans-serif;
    font-weight: 600;
    font-style: italic;
    text-transform: uppercase;
    color: #003566;
    font-size: 48px;
    line-height: 52px;
    margin: 10px 0;
}

.headline-container h2{
    font-size: 24px;
    line-height: 26px;
    text-transform: none;
    color: #179961;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.5);
}

.headline-container h1 + h2{
    margin-top: -5px;
}

.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    
}

.image-container a {
    margin: 10px 0;
    width: 90%;
    height: 200px;
    background-color: white;
    display: flex;
    padding: 10px 10px;
    box-sizing: border-box;
    justify-content: center;
    -webkit-filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}


.ufo-logo{
    transform: scale(0.6);

}

footer {
    width: 100%;
    position: fixed;
    bottom: 0px;
    
}

footer nav {
    display: block;
    color: #003566;
    text-align: center;
}

footer nav ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

footer nav ul li{
    padding: 10px 10px;
}

footer a{
        color: #337ab7;
        text-decoration: none;
        background-color: transparent;
}


@media (min-width: 768px) {
    .center-container{
        position: absolute;
        top: 0px;
        bottom: 0px;
        right: 0px;
        left: 0px;
        z-index: 40;
        height: 100%;
    }

    .image-container img {
        width: 90%;
    }
    

    .image-container a{
        -webkit-transform: skew(-17.5deg);
        transform: skew(-17.5deg);
        -webkit-box-sizing: content-box;
    }

    .image-container a:hover {
        -webkit-transform: scale(1.2) skew(-17.5deg);
        transform: scale(1.2) skew(-17.5deg);
    }

    .image-container img {
        width: 100%;
        max-width: 260px;
        -webkit-transform: skew(17.5deg);
        transform: skew(17.5deg);
        -webkit-box-sizing: content-box;
    }

    .image-container img.ufo-logo{
        transform: scale(0.76) skew(17.5deg);
    }

    .image-container {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        max-width: 880px;
    }

    .image-container a {
        width: 45%;
        

    }

    footer{
        position: absolute;
        bottom: 0px;
    }
}
