body {
    margin: 0;
}
section {
    background-color: #aaaaaa;
    font-family: 'Oooh Baby', cursive;
}

.hero {
    background-color: rgb(37, 33, 31);
    height: 100vh;
    color: white;
    font-size: 40px;
    font-family: 'Josefin Sans', sans-serif;
}

footer {
    background-color: rgb(37, 33, 31);
    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: 30px;
}

li {
    text-decoration: none;
}

h1 {
    font-size: 90px;
    margin: 0;
}

h2 {
    font-size: 60px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
}

h3 {
    font-size: 30px;
    font-family: 'Josefin Sans', sans-serif;
}

p {
    margin: 0;
    font-size: 50px;
    font-family: 'Josefin Sans', sans-serif;
}

.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: 50px;
    border-radius: 40px;
    background-color: rgb(216, 121, 57);
    text-align: center;
    font-size: 40px;
    padding-top: 5px;
    margin-top: 20px;
}

.button:hover {
    background-color: rgb(238, 154, 98);
}

.button:active {
    background-color: rgb(224, 111, 46);
    color: rgb(185, 168, 168);
}

.socials {
    padding-bottom: 200px;
}

.logo {
    height: 100px;
    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;
}

.headshot-container {
    display: flex;
    align-items: center;
}

.project-card {
    background-color: #cac9c9;
    width: 300px;
    height: 500px;
    box-shadow: 5px 5px 20px rgb(121, 115, 115);
    border-radius: 5px;
    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: 270px;
    border-radius: 150px;;
}

hr {
    margin-left: 20px;
    margin-right: 20px;
}

p.subtext {
    font-size: 25px;
    font-weight: 400;
    margin-top: 15px;
}

.project-link {
    text-decoration: none;
    color: black;
    font-weight: 300;
}

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: rgb(61, 53, 50);
        margin: 0px;
    }
    
    ul.show {
        display: block;
        margin-bottom: 30px;
    }

    nav {
        display: flex;
        flex-direction: column-reverse;
        background-color: rgb(61, 53, 50);
    }
    
    .logo {
        display: none;
    }
}