body {
    font-family: 'BenchNine', sans-serif;
    background-image: url('assets/background.png');
    background-repeat: no-repeat;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.logo-container {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}

.logo {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 350;
    height: 350;    
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: #ff7b00;
    -webkit-box-shadow: 0 0 20px 5px black;
            box-shadow: 0 0 20px 5px black;
    padding: 35px;
}

ul {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-items: center;
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
    margin: 0;
    padding: 0;
}

ul a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 120px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-color: rgba(0, 0, 0, 0.61);
    color: white;
    font-size: 2em;
    text-decoration: none;
    -webkit-text-decoration-color: inherit;
            text-decoration-color: inherit;    
    text-align: center;    
}

ul a:hover {
    background-color: rgba(255, 255, 255, 0.61);
    color: black;
    -webkit-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
}

footer {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.61);
    color: white;
    font-size: 1.1em;
    padding: 10px;
}

footer a {
    color: #fe7078;
}

p {
    margin: 5px;
}

@media screen and (max-width: 700px) {
    ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;        
    }

    ul a {
        min-width: 100%;
        height: auto;
        -webkit-box-flex: 0;
            -ms-flex: none;
                flex: none;
        margin: 10px 0px;
        font-size: 1.5em;
    }

    li {
        padding: 15px 0px;
    }
    .logo {
        width: 125px;
        height: 125px;
        padding: 20px;
        margin-top: 20px;
    }

    .logo img {
        width: 100%;
    }

    footer {
        font-size: 0.8em;        
    }
  }