body {
    margin: 0;
    padding: 0;
    font-family: 'Geneva';
    font-weight: 100;
    color: #fff;
}

h1 {
    margin-bottom: 10px;
    font-weight: 100;
    font-size: 45px;
}

.bodytext {
    text-align: center;
    font-size: 28px;
}

main {
    width: 100%;
    height: 100vh;
    background-image: url('../background.jpg');
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.center-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.center-content > img {
    width: 236px;
    height: 148px;
}

.footer {
    opacity: .5;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    color: #fff;
    position: absolute;
    right: 0;
    bottom: 35px;
    left: 0;
}

.center-content ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-top: 30px;
    padding-left: 0;
    list-style-type: none;
}

.center-content ul li a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: #fff;
}

.center-content ul li a:hover {
    color: #fff;
}

.center-content ul li + li {
    margin-left: 20px;
}

.center-content ul li a img {
    width: 29px;
    height: 29px;
    margin-right: 10px;
}

@media screen and (max-width: 1024px) {
    h1 {
        font-size: 32px;
    }
    
    .bodytext {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .center-content .mobile-center {
        text-align: center;
    }
    
    .center-content ul {
        display: block;
        padding-left: 0;
    }
    
    .center-content ul li + li {
        margin-top: 20px;
        margin-left: 0;
    }
}