body{
    margin:0 auto;  /*allows the background to touch the ends of the page*/
    font-family: 'Quicksand', sans-serif;
}

section{
     background-color: white;
}

.Hero{
    background-color: #1c1d25;
    height: 100vh;  /* made section as big as browser */
    color: white;
    font-size: 40px;
    margin:0 auto;
}

.Hero-area{
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

footer{
    height: 500px;
    background-color: black;
}

nav{
    display: flex;
    justify-content: space-between;
}

ul{
    display: flex;
    justify-content: space-around;
    list-style-type: none;
    font-size: 40px;
}

ul.show{
    display: block;
}

li{
    width: 200px;
    text-decoration: none;
}

h1{
    font-family: 'Pacifico', cursive;
    font-size: 90px;
    margin-bottom: 10px;
}

h2{
    font-size: 60px;
}

p{
    margin-top: 10px;
}

.subtext{
    font-size: 15px;
    font-weight: 300;
}

.Hero-text{
    margin-left: 80px;
    margin-bottom: 100px;
}

.socials{
    padding-right: 50px;
}

.button{
    width: 200px;
    height: 50px;
    border-radius: 35px;
    background-color: coral;
    text-align: center;
    padding-bottom: 6px;
}

.button:hover{
    background-color: #ef744b;
}

.button:active {
    background-color: #a9a9a9;
    color: #808080;
}

.logo{
    height: 100px;
    margin: 40px;
}

.social{
    margin: 10px;
}

.button-link{
    text-decoration: none;
    color: #1c1d25;
}

.sub-section{
    display: flex;
    justify-content: space-around;
    padding: 80px
}

.sub-section-2{
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 80px
}

.social:hover{
    fill: #ef744b;
}

.headshot-container{
    display: flex;
    align-items: center;
}

.headshot{
    width:320px;
    border-radius: 150px;
    margin-top: 120px;
}

.information-text{
    padding-right: 50px;
    font-size: 40px;
    text-align: left;
}

.project-container{
    display: flex;
    justify-content: space-around;
}

@media only screen and (max-width: 1000px){
    .project-container{
        display: flex;
        flex-wrap: wrap;
    }
}

.project-card1{
    width:300px;
    height:360px;
    box-shadow: 5px 5px 20px grey;
}

.project-card2{
    width:300px;
    height:360px;
    box-shadow: 5px 5px 20px grey;
}

.project-card3{
    width:300px;
    height:360px;
    box-shadow: 5px 5px 20px grey;
}

.project-image{
    margin-top: 30px;
    width: 250px;
    border-radius:125px;
}

.project-link{
    text-decoration: none;
    font-family: 'Pacifico', cursive;
    color: coral;
    font-size: 20px;
}

.nav-links{
    text-decoration: none;
    color: white;
}

.wrapper{
    position: absolute;
    width: 100%;
    justify-content: center;
    display: grid;
}

.form{
    max-width: 600px;
    margin: 0 auto;
}

.footer-text{
    color: white;
}

.input1{
    width: 400px;
    height: 50px;
    margin-bottom: 20px;
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
}

textarea{
    outline: coral ;
    width: 400px;
    font-family: 'Quicksand', sans-serif;
    font-size: 20px;
}

.button-form{
    width:200px;
    height:30px;
    background-color: #ef744b;
}

.button-form:hover{
    background-color: #1c1d25;
    color: white;
}

.hamburger{
    display: none;
}

.hamburger:focus{
    outline:0;
}

@media only screen and (max-width: 1000px){

    .hamburger{
        display: block;
        border:0;
        background-color: transparent;
        color: white;
        font-size: 30px;
        margin: 20px;
        align-self: flex-end;
    }

    ul{
        display: none;
        background-color: #33364e;
    }

    ul.show{
        display: block;
    }

    nav{
        align-items: flex-start;
        display: flex;
        flex-direction: column-reverse;
        background-color: #33364e;
    }

    .logo{
        display: none;
    }

    .sub-section{
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        padding: 80px
    }

    .information-text{
        padding-right: 30px;
        font-size: 30px;
        text-align: left;
    }

    .headshot{
        width:320px;
        border-radius: 150px;
        margin-left: 50px;
    }

}

