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;

}

.lightgreentext {
    color: rgb(89, 170, 125);
    text-decoration: none;
}

.container {
    text-align: center;
    padding: .5em;
    align-content: center;
}

.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%;
}
.page {
    color: #A6D6AA;
}
.headline {
    color: rgba(0, 100, 72, 1);
    font-size: 4em;
}

.body-container p {
    color: rgba(0, 100, 72, 1);
    font-size: 1.3em;
    text-align: left;
    padding: 1em;
    margin: 0 1em;

}
.body-container img {

    padding-top: 3em;
}

.footer-container {

    padding-top: 20em;
    bottom: 0;

}

@media only screen and (min-width: 650px) {
.body-container{
    width: 650px;
    margin: auto;
}
}


@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;      
    }

    header ul li a:hover{
        color: #A6D6AA;
        text-decoration: none;      
    }

    .logo {
        width: 75px;
        padding: 1em;
    }

    

}


@media only screen and (min-width: 1280px) {
    .container {
        align-content: center;
        margin: auto;
        width: 1280px;
    }
}