body{
    font-family: 'poppins',sans-serif;
}
section{
    background-color:white;
}
.hero{
    background-color: #1c1d25;
    height: 100vh;
    color: white;
    font-size: 40px;
}    
footer{
    height: 500px;
    background-color: black;
    color: white;
    text-align: center;
    padding: 80px;
}
nav{
    display: flex;
    justify-content: space-between;
}
ul{
    display: flex;
    list-style-type:none;
    width: 700px;
    justify-content: space-around;
    font-size: 30px;
}
li{
    text-decoration: none; 
}
h1{
    font-size: 90px;
    margin: 0;
}
h2{
    font-size: 50px;
}
p{
    margin: 0;
    font-size: 30px;
    font-weight: 300px;
}
.hero-area{
    display: flex;
    height: 100%;
    justify-content: space-between;
    align-items: center;

}
.hero-text{
    margin-left: 80px;
    margin-bottom: 200px;
}
.button{
    width: 200px;
    height: 60px;
    border-radius: 30px;
    background-color: coral;
    text-align: center;
    font-size: 30px;
    font-weight: 300px;
    padding-top: 5px;
    margin-top: 20px;
}
.button:hover{
    background-color: #ef744b;
}
.button:active{
    background-color: #a9a9a9;
    color: #808080;
}
.socials{
    padding-bottom :200px; 
}
.logo{
    height: 80px;
    margin: 30px;
}
.social{
    margin: 20px;
}
.sub-section{
    display: flex;
    justify-content: space-around;
    padding: 80px;
}
.sub-section-alternative{
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 80px;

}

.headshot{
    width: 300px;
    border-radius: 150px;

}.headshot-container{
    display: flex;
    align-items:center;
}
.project-card{
    height: 500px;
    background-color: white;
    box-shadow: 5px 5px 20px rgb(197, 195, 195);
}
.project-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-row-gap:50px;
    grid-column-gap:50px;
}
.subtext{
    font-size: 15px;
    font-weight: 300;

}
hr{
    margin-left: 20px;
    margin-right: 20px;
}
.copy-right{
    color: white;
    margin-top: 30px;
}
.project-image{
    margin-top: 50px;
    border-radius: 20px;
}
.project-link{
    text-decoration:none;
    color: #ef744b;
}
a{
    text-decoration: none;
    color: white;
}
.hamburger:focus{
    outline: 0;
}
.hamburger{
    display: none;
}
@media only screen and (max-width: 1000px){
    .hamburger {
        display: block;
        border: 0;
        background-color: transparent;
        color: white;
        font-size: 30px;
        margin: 20px;
        align-self: start;
        
    }
    nav{
        display: flex;
        flex-direction: column-reverse;
        background-color: #2b2c38;
    }

    ul {
        display: none;
        background-color: #2b2c38;
        margin: 0;
    
    }
    ul.show{
        display: block;
    }    
    .logo{
        display: none;
    }
    h2{
        font-size: 40px;
    }
    #hello{
        font-size: 22px;
    }
    .project-container{
        display: grid;
        grid-template-columns: 1fr;
    }
    #email{
        font-size: 24px;
        margin-left: -50px;

    }.project-container{
        display: grid;
        grid-template-columns:1fr 1fr  ;
    }
}




    
