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

section {
    
}

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

footer {
    height: 500px;
    background-color: black;
    color: #DDAAE9;
    text-align: center;
    padding: 80px;
}

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

ul {
    display: flex;
    list-style: none;
    width: 600px;
    justify-content: space-around;
    font-size: 30px;
}

/* ul.show {
    display: block;
} */

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

h1 {
    font-size: 90px;
    margin: 0;
}
p {
    margin: 0;
    font-size: 30px;
    font-weight: 300;
}

.hero-area {
    display: flex;
    height: 100%;
    width: 100%;
    border: none;
    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: #DDAAE9;
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    padding-top: 5px;
    margin-top: 20px;

}

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

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

.socials {
    display: flex;
    flex-direction: column;
    padding-bottom: 200px;
}

.social {
    margin-right: 20px;
    margin-top: 10px;
    color: transparent;
}
.social.button2:hover {
    fill: #AA7EC1;
}

.logo {
    height: 120px;
    margin: 1px;
    margin-top: 0;
}

.sub-section {
    display: flex;
    justify-content: space-around;
    padding: 80px;
    border: solid #DDAAE9 .5px;
}    

    h2 {
        font-size: 50px;
        margin-bottom: 20px;
    }

    p {
        font-size: 20px;
    }

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

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

.sub-section-alt {
    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;
    box-shadow: 5px 5px 20px #DDAAE9;
    margin: 10px;
    vertical-align: auto;
}

h3 {
    margin-bottom: 0;
}
 .subtext {
    height: 85px;
    padding: 10px;
    font-size: 12px;
    font-weight: 300;
 }

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

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

 .project-link {
     font-size: 20px;
     text-decoration: none;
     color: #DDAAE9;
 }
 /* for about me and contact link */

a {
    text-decoration: none;
    color: white;
}


.hamburger {
    display: none;
}

.hamburger:focus {
    outline: 0;
}
@media only screen and (max-width: 1000px) { 
    section {
        border: none;
    }
    .hamburger {
        display: block;
        border: 0;
        background-color: transparent;
        color: white;
        font-size: 30px;
        margin: 20px;
        align-self: flex-end;
    }

    ul {
        display: none;
        background-color: #23242e;
        margin: 0px;
    }
    ul.show {
        display: block;
    }

    nav {
        display: flex;
        flex-direction: column-reverse;
        background-color: #23242e;
    }

    .logo {
        display: none;
    }
}