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

section {
    background-color: whitesmoke;
}

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

footer {
    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: 500px;
    justify-content: space-around;
    font-size: 24px;
    margin-right: 20px;
}

li {
    text-decoration: none;
}
li a:hover {
    color: rgb(900, 80, 80);
}

h1 {
    font-size: 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: 55px;
    border-radius: 30px;
    background-color: rgb(900, 80, 80);
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    padding-top: 5px;
    margin-top: 20px;
}

.button:hover {
    background-color: rgba(900, 80, 80, 0.7);
}

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

.socials {
    padding-bottom: 200px;
}

#page-logo a {
    font-family: Oleo Script, Pacifico, cursive;
    padding: 10px;
    margin-left: 10px;
    color: rgb(255, 50, 50);
    font-size: 65px;
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px black;
}
.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: 50px;
    margin-left: 80px;
}

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

.project-card {
    width: 500px;
    height: 500px;
    box-shadow: 5px 5px 20px rgba(10, 10, 10, 0.5);
    margin: 10px;
    border-radius: 8px;
}

.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: 350px;
    border-radius: 10px;
}

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

.project-link {
    text-decoration: none;
    color: rgb(800, 100, 100);
    font-size: 18px;
    font-weight: 600;
}

a {
    text-decoration: none;
    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: #2b2c38;
        margin: 0;
    }

    ul.show {
        display: block;
    }

    nav {
        display: flex;
        justify-content: center;
        flex-direction: column-reverse;
        background-color: #2b2c38;
    }

    .logo {
        display: none;
    }
}

.project-actions {
    display: flex;
    justify-content: space-evenly;
}
#more-projects {
    margin-top: 25px;
    padding: 15px;
}
#more-projects .project-link {
    color: #1c1d25;
    font-size: 24px;
}
#more-projects .project-link:hover{
    color: rgb(800, 100, 100);
}

footer div {
    display: flex;
    justify-content: center;
}

footer h2 {
    color: rgb(800, 80, 80);
}

footer p {
    font-size: 18px;
}