@media only screen and (max-width: 1000px) {
    .project-container {
        display: flex;
        flex-wrap: wrap;
    }
}
body {
    font-family: 'Poppins', sans-serif;
    
}
section {
    
    background-color: lightblue;
    

}

.hero {
    background-color: #0f185a;
    height: 100vh;
    color: white;
    font-size: 40px;

}

footer {
    padding: 80px;
    color: white;
    text-align: center;
    background-color: black;
}

nav {
    display: flex;
    justify-content: space-between;
}
a {
    text-decoration: none;
    color: white;
}
ul {

    display: flex;
    list-style-type: none;
    width: 500px;
    justify-content: space-around;
    font-size: 30px;
}
ul.show {
    display: block;
}

li {
    text-decoration: none;
}
h1 {
    font-size: 90px;
    margin: 0px;
}
h2 {
    font-size: 50px;  
}
p{
    margin: 0px;
    font-size: 30px;
    font-weight: 300;
}
.subtext {
    font-size: 15px;
    font-weight: 300;

}
.hero-text {
    margin-left: 80px;
    margin-bottom: 200px;
}
.button {
    width: 200px;
    height: 55px;
    border-radius: 30px;
    text-align: center;
    background-color: coral;
    font-size: 30px;
    font-weight: 300;
    padding-top: 5px;
    margin-top: 20px;
}
.button:hover {
    background-color: #ef744b;
}
.button:active {
    background-color: #a9a9a9;
    color: #808080;
}
.hero-area {
    display: flex;
    align-items: center;
    height: 100%;
    justify-content: space-between;
}
.socials {
    padding-bottom: 200px;
}
.logo {
    height: 120px;
    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-container {
    display: flex;
    align-items: center;
}
.headshot {
    width: 300px;
    border-radius: 150px;
}
.project-container {
    display: flex;
    justify-content: space-around;
}
.project-card {
    width: 300px;
    height: 500px; 
    box-shadow: 5px 5px 20px rgb(163, 163, 163);
    margin: 10px;
}
.project-image {
    
    width: 250px;
    border-radius: 125px;
    margin-top: 25px;

}
hr {
    margin-left: 20px;
    margin-right: 20px;
}
.project-link {
   text-decoration: none;
   color: #ef744b;
}
.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: #18237a;
        margin: 0px;
    }
    nav {
        display: flex;
        flex-direction: column-reverse;
        background-color: #18237a;
    }
    .logo {
        display: none;
    }
}