@media only screen and (max-width: 1000px) {

    .project-container {
        display: flex;
        flex-wrap: wrap;
    }

    .contactForm {
        width: 400px;
    }

    .hamburger {
        display: block;
        border: 4px;
        color: rgb(255, 255, 255);
        font-size: 1em;
        background: none;
        margin-right: 5px;
    }

    .clock {
        margin-left: 5%;
    }

    ul {
        display: none;
        background-color: #2b2c38;
        letter-spacing: 3px;
        width: 200px;
    }

    ul.show {
        display: block;
    }

    nav {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        background-color: #2b2c38;
    }


    .projects-logo {
        display: none;
    }
}

@media only screen and (max-width: 500px) {

    .headshot {
        width: 100%;
    }

    #myBtn {
        bottom: 70px;
        right: 70px;

    }

}

@media only screen and (max-width: 800px) {

    ul{
        font-size: .8rem;
        padding-left: 20px;
        width: auto;
    }

    .headshot-container{
        justify-content: center;
    }

    .headshot{
        border-radius: 100%;
    }


    .sub-section{
        flex-direction: column;
        padding: 50px;
    }

    .sub-section h2{
        text-align: center;
    }

    .logo{
        margin: auto;
        height: 60px;
    }

    h1{
        font-size: 1.5em;
    }

    .hero-text{
        margin-left: 10%;
        margin-bottom: 100px;
    }

    .hero-text p{
        font-size: .8em;
    }

    .socials{
        width: 100%;
        height: 40%;
    }

    .hero-area{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .button{
        width: 85%;
        padding: 5px 10px;
        border-radius: 16px;
    }

    #copyFooter{
        font-size: .8em;
    }

    .form-control-name {
        width: 100%;
    }

    .form-control-email {
        width: 100%;

    }

    .form-control-message {
        width: 100%;
    }

    #myBtn {
        bottom: 60px;
        right: 20px;

    }

    .sendFormNewButton{
        padding: 3% 4.2%;
    }

    footer{
        padding: 40px;
    }

}