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;
}

.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 {
  margin-top: 12em;
    font-size: 1.1em;
    color: #3AB694;
    text-align: center;

}

.page {
    color: #A6D6AA;
}


::placeholder {
    color: #3AB694;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #3AB694;
}

::-ms-input-placeholder{
    color: #3AB694;
}

.field {
    display: table;
    margin: auto;
}

.text {
 margin-top: -10em;
 max-width: 475px;
 margin-left: auto;
 margin-right: 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;
    }


    .form-control {
        -webkit-appearance: none;
        border: 0;
        background: none;
        box-shadow: none;
        width: 500px;
        font-family: sans-serif;
        margin: .8em;
        background: rgb(240, 240, 240);
        border: none;
        outline: none;
        border-bottom: 3px solid #3AB694;
        color: rgba(0, 100, 72, 1);
        font-size: 1em;
        resize: none;
      
    }
    .submit {
        -webkit-appearance: none;
        border: 0;
        background: none;
        box-shadow: none;
        color:white;
        background: #3AB694;
        padding: .4em .2em .2em .2em;
        text-decoration: none;
        cursor: pointer;
        border-radius: 5px;
        width: 250px;
        font-size: 1.2em;
        
    }
   

}

@media only screen and (max-width: 650px) {

    .form-control {
        -webkit-appearance: none;
        border: 0;
        background: none;
        box-shadow: none;
        width: 80%;
        font-family: sans-serif;
        margin: .8em;
        background: rgb(240, 240, 240);
        border: none;
        outline: none;
        border-bottom: 3px solid #3AB694;
        color: rgba(0, 100, 72, 1);
        font-size: 1.1em;
        resize: none;
      
    }

    
    .submit {
        -webkit-appearance: none;
        border: 0;
        background: none;
        box-shadow: none;
        color:white;
        background: #3AB694;
        padding: .5em .3em .3em .3em;
        text-decoration: none;
        cursor: pointer;
        border-radius: 5px;
        width: 200px;
    }

}

@media only screen and (min-width: 1000px) {

}

@media only screen and (min-width: 1280px) {
    .container {
        align-content: center;
        margin: auto;
        width: 1280px;
    }
}