body {
    font-family: 'Poppins', sans-serif;
}

section {
    background-color: white;
}

.hero {
    height: 100vh;
    background-color: #1c1d25;
    color: white;
    font-size: 40px;
}

footer {
    padding: 80px;
    background-color: black;
    color: white;
    text-align: center;
    font-weight: 200;
}

nav {
    display: flex;
    justify-content: space-between;
}

ul {
    display: flex;
    list-style-type: none;
    width: 500px;
    justify-content: space-around;
    font-size: 30px;
}

ul.show {
    display: block;
}

li {
    text-decoration: none;
    margin: 7px;
    font-weight: 300;
}

h1 {
    font: 90px;
    margin: 0;
}

h2 {
    font-size: 50px;
}

p {
    margin: 0;
    font-size: 30px;
    font-weight: 300;
}

.subtext {
    font-size: 15px;
    font-weight: 300;
}

.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:45px;
    border-radius: 30px;
    background-color: rgb(38, 182, 222);
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    padding-top: 5px;
    margin-top: 20px;
    font-weight: 600;
}

.button:hover {
    background-color: rgb(140, 216, 237);
}

.button:active {
    background-color: darkgray;
    color: #808080;
}

.socials {
    padding-bottom: 200px;
}

.logo{
    height: 80px;
    margin: 20px;
}

.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: 250px;
    border-radius: 200px;
    box-shadow: 10px 10px 10px lightgray;
    float: right;
}

.headshot-container{
    display: flex;
    align-items: center;
}

.project-card {
    width: 300px;
    height: 500px;
    box-shadow: 5px 5px 20px;
    margin: 10px;
}

.project-container {
    display: flex;
    justify-content: space-around;
}

@media only screen and (max-width: 1000px) {
    .project-container {
        display: flex;
        flex-wrap: wrap;
    }
}

.project-image {
    margin-top: 25px;
    width: 250px;
    border-radius: 125px;
}

hr {
    margin-left: 20px;
    margin-right: 20px;
}

.project-link {
    text-decoration: none;
    color: rgb(41, 29, 214);
}

a {
    text-decoration: none;
    font: white;
}

a:link {
    color: white;
}

a:visited {
    color: white;
}

.hamburger {
    display: none;
}

.hamburger:focus {
    outline: 0;
}

@media only screen and (max-width: 1000px) {
    .hamburger {
        display: block;
        border: 0;
        margin: 20px;
        background-color: transparent;
        align-self: flex-end;
        color: white;
        font-size: 30px
    }

    ul {
        display: none;
        background-color: #2b2c38;
        margin: 0px;
    }

    ul.show {
        display: block;
    }

    nav {
        display: flex;
        flex-direction: column-reverse;
        background-color: #2b2c38;
    }

    .logo {
        display: none;
    }
}