body {
    font-family: 'Raleway', sans-serif;
}

section {
    /* height: 500px; */
    /* display: flex; */
    background-color: white;
    /* border: solid black 1px; */
}

.sub-section {
    /* display: flex; */
    /* justify-content: space-around; */
    background-color: rgb(202, 238, 255);
    padding-top: 40px;
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 80px;
}

.sub-sub-section {
    background-color: rgb(202, 238, 255);
    display: flex;
    justify-content: space-around;
}

.sub-section-alt {
    background-color: rgb(202, 238, 255);
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 40px;
}

.sub-section-2 {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-top: 40px;
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 40px;
    /* change the hex colors */
    background-color: black;
    /* make section same size as screen */
    color: white;
    /* font-size: 40px; */
}

.hero {
    /* change the hex colors */
    background-color: black;
    /* make section same size as screen */
    height: 100vh;
    color: white;
    font-size: 40px;
}

footer {
    background-color: black;
    color: white;
    text-align: center;
    padding-top: 20px;
    padding-left: 80px;
    padding-right: 80px;
    padding-bottom: 60px;
}

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

/* for nav bar */
ul {
    display: flex;
    list-style-type: none;
    width: 600px;
    /* can also do space-around, experiment with it */
    justify-content: space-evenly;
    font-size: 27px;
    background-color: black;
}

ul.show {
    display: block;
}

li {
    /* width: 200px; */
    font-size: smaller;
    text-decoration: none;
}

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

h2 {
    font-size: 50px;
}

h4 {
    font-size: 35px;
}

p {
    margin: 0;
    margin-top: 10px;
    font-size: 30px;
    font-weight: 300;
}

p2 {
    margin: 0;
    margin-top: 10px;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.4;
}

.subtext {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 5px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: left;
}

.subtext2 {
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 10px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: left;
}

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

}

@media only screen and (max-width: 1000px) {
    .hero-area {
        display: flex;
        flex-wrap: wrap;
    }
}

.hero-text {
    margin-left: 20px;
    margin-bottom: 200px;
}

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

.button:hover {
    background-color: #5f8eb3;
}

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

.contact {
    padding-bottom: 200px;
    padding-right: 10px;
}

.logo {
    height: 80px;
    width: 180px;
    margin: 10px;
}

.logo-mobile {
    display: none;
}

.social {
    margin: 20px;
}

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

.headshot-container {
    margin-left: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 200px;
}

.picture {
    width: 400px;
    border-radius: 20px;
}

.picture-container {
    margin-left: 80px;
    display: flex;
    align-items: center;
    /* margin-bottom: 200px; */
}

.picture-container-2 {
    margin-right: 80px;
    display: flex;
    align-items: center;
    /* margin-bottom: 200px; */
}

@media only screen and (max-device-width: 480px) {
    .headshot {
        width: 500px;
    }
    .headshot-container {
        margin-bottom: 0;
    }
    .hero-area {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    .hero-text {
        margin-bottom: 0;
    }
    .logo-mobile {
        display: block;
        width: 500px;
    }
}

.project-card {
    width: 300px;
    height: 500px;
    box-shadow: 5px 5px 20px grey;
    margin: 10px;
}

.project-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 80px;
}

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

.project-image {
    margin-top: 20px;
    margin-left: 10px;
    margin-right: 10px;
    width: 250px;
    border-radius: 15px;
}

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

.project-link {
    /* text-decoration: none; */
    color: rgb(0, 59, 86);
    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;
    }

    li {
        font-size: larger;
        margin-bottom: 10px;
    }

    ul {
        display: none;
        /* background-color: rgb(64, 60, 60); */
        margin: 0px;
    }

    ul.show {
        display: block;
    }

    nav {
        display: flex;
        flex-direction: column-reverse;
        /* background-color: rgb(64, 60, 60); */
    }

    .logo {
        display: none;
    }
}

.bonus-card {
    background-color: rgb(231, 248, 255);
    width: 300px;
    /* height: 300px; */
    box-shadow: 5px 5px 20px grey;
    margin: 5px;
}

.bonus-container {
    display: flex;
    justify-content: space-around;
    margin-bottom: 10px;
}

@media only screen and (max-width: 1000px) {
    .bonus-container {
        display: flex;
        flex-wrap: wrap;
        font-size: larger;
    }
    .bonus-card {
        width: 375px;
    }
    .project-image {
        width: 340px;
    }
    .subtext {
        font-size: 20px;
    }
    .subtext2 {
        font-size: 18px;
    }
}
