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

section {
    background-color: #C1CBD9;
}

.hero {
    background-color: #172026;
    height: 100vh;
    color: white;
    font-size: 30px;
}

footer {
    background-color: #000000;
    color: #FFFFFF;
    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: 20px;
}

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

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

h2 {
    font-size: 30px;
}

p {
    margin: 0;
    font-size: 20px;
    font-weight: 300;
}

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

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

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

.button {
    width: 130px;
    height: 40px;
    border-radius: 30px;
    background-color: #1A4040;
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    padding-top: 10px;
    margin-top: 20px;
}

.button:hover {
    background-color: #338080;
}

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

.socials {
    padding-bottom: 200px;
    margin-right: 20px;
}

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

.social {
    margin: 10px;
}

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

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

.headshot-container {
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
}

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

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

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

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

.project-image {
    margin-top: 25px;
    width: 250px;
    border-radius: 125px;
}

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

.project-link {
    text-decoration: none;
    color: #1A4040;
}

a {
    text-decoration: none;
    color: #FFFFFF;
}
