body {
    font-family: "Poppins", sans-serif;
    margin: 0;
}

section {
    background-color: white;
}

.hero {
    height: 100vh;
    background-color: #1c1d25;
    color: white;
    font-size: 40px;
}

footer {
    padding: 80px;
    background-color: #1c1d25;
    color: white;
    text-align: center;
}

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

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

li {
    text-decoration: none;
}

h1 {
    font-size: 90px;
    margin: 0;
}

h2 {
    font-size: 50px;
}

h3 {
    font-size: 25px;
}

hr {
    margin-left: 20px;
    margin-right: 20px;
}

p {
    margin: 0;
    font-weight: 400;
    font-size: 30px;
}

a {
    text-decoration: none;
    color: white;
}

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

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

.button {
    width: 200px;
    height: 55px;
    border-radius: 30px;
    background-color: #00bfff;
    text-align: center;
    font-weight: 300;
    font-size: 30px;
    padding-top: 5px;
    margin-top: 20px;
}

.button:hover {
    background-color: #66d8ff;
}

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

.socials {
    padding-bottom: 100px;
}

.social {
    display: block;
    height: 50px;
    width: 50px;
    margin: 20px;
    margin-right: 80px;
}

.logo {
    height: 80px;
    margin: 30px;
}

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

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

/* .information {

} */

.bio {
    font-size: 1.8vw;
}

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

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

.project-card {
    width: 400px;
    height: 500px;
    box-shadow: 5px 5px 20px rgb(187, 187, 187);
    margin: 10px;
}

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

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

.project-image {
    margin-bottom: 5px;
    width: 100%;
    /* border-radius: 150px; */
}

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

.project-link {
    text-decoration: none;
    color: #00bfff;
}

.hamburger {
    display: none;
}

.hamburger:focus {
    outline: 0;
}

@media only screen and (max-width: 1200px) {
    .hamburger {
        display: block;
        border: 0px;
        background-color: transparent;
        color: white;
        font-size: 30px;
        margin: 20px;
        align-self: flex-end;
    }

    ul {
        display: none;
        background-color: #343644;
        margin: 0px;
    }

    ul.show {
        display: block;
    }

    nav {
        display: flex;
        flex-direction: column-reverse;
        background-color: #343644;
    }

    .logo {
        display: none;
    }
}
