body {
    margin: 0;
    background-color: F8F8F8;
    font-family: 'Roboto', Arial, Helvetica, sans-serif
}

.hide-desktop {
    display: none;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;

}

.container {
    text-align: center;
    padding: .5em;
    align-content: center;
}

.image-container ul li {
    padding:1em;
}

.image-container img {
    width: 100%
}

.logo {
    width: 20%;
}

.navui {
    width: 152%;
    margin-left: -25.5%;
    margin-bottom: -17%;
   position: fixed;
   bottom: 0;
}

.home-button {
    z-index: 2;
    width: 17%;
    margin-left: 23.5%;
    position: fixed;
    bottom: 0;  
    opacity: 0;
}

.about-button {
    z-index: 3;
    width: 17%;
    margin-left: 42.5%;
    position: fixed;
    bottom: 0;   
    opacity: 0;
}

.contact-button {
    z-index: 3;
    width: 17%;
    margin-left: 62%;
    position: fixed;
    bottom: 0;   
    opacity: 0;
}


p {
    font-size: 1.1em;
    color: #3AB694;
    text-align: center;
    margin-bottom: 25%;
}

@media only screen and (min-width: 650px) {

    .hide-desktop {
        display: unset;
    }

    .navui {
        display: none;
    }

    .home-button {
        display: none;
    } 

    .about-button {
        display: none;
    }

    .contact-button {
        display: none;
    }

    header {
        display: flex;
        justify-content: space-between;
        padding: 1em;

    }

    header ul li{
        display: inline-block;
        font-size: 1.2em;
        padding: 2.5em 1em;   
    }
    header ul li a{
        color: #3AB694;
        text-decoration: none;      
    }
   .page {
       color: #A6D6AA;
   }
   
    header ul li a:hover{
        color: #A6D6AA;
        text-decoration: none;      
    }

    .logo {
        width: 75px;
        padding: 1em;
    }
   
    .image-container img {
        width: 250px;
        margin-bottom: -.5em;
    }

    .image-container ul {
        height: 600px;
        width: 560px;
        display: inline-flex;
        flex-direction: column;
        flex-wrap: wrap;
    }
     /*  
     Reorder image-container
    1 4
    2 5
    3 6
     */
    .image-container ul li:nth-child(1) {
        order: 1;
    }
    .image-container ul li:nth-child(2) {
        order: 4;
    }
    .image-container ul li:nth-child(3) {
        order: 2;
    }
    .image-container ul li:nth-child(4) {
        order: 5;
    }
    .image-container ul li:nth-child(5) {
        order: 3;
    }

    p {
        margin-top: 6em;
        margin-bottom: 2em;
    }
  
}

@media only screen and (min-width: 800px) {

    .image-container img {
        width: 300px;
    }

    .image-container ul {
        height: 800px;
        width: 600px;
    }

    p {
        margin-top: -3em;
        margin-bottom: 2em;
    }

}

@media only screen and (min-width: 1000px) {
   
    .image-container img {
        width: 400px;
    }

    .image-container ul {
        height: 900px;
        width: 800px;
    }

    p {
       margin-top: 10em;
       margin-bottom: 2em;
    }


}

@media only screen and (min-width: 1280px) {
.container {
    align-content: center;
    margin: auto;
    width: 1280px;
}
}

