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

}


section {
    background-color: #3F403F;
}

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

 
footer {
    background-color: #3F403F;
    text-align: center;
    color: white; 
    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;
    color: white;
}

h2{ 
    font-size: 50px;
    color: white;
}

h3 {
    font-size: 20px;
    color: white;
}

p {
    margin: 0;
    font-size:20px;
    font-weight: 100;
    color: white;
}

.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;
    background-color: #9CAF88;
    border-radius: 25px;
    text-align: center;
    font-size: 30px;
    font-weight: 100;
    padding-top: 5px;
    margin-top: 20px;
}

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

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

.socials {
    padding-bottom: 200px;
} 

.social {
    margin: 20px;
}

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

.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: 150px;
}

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


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


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

.footer-container{
    display: flex;
    justify-content: space-around;
    padding: 80px;
}

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

    .footer-container{
        display: flex;
        flex-wrap: wrap;
    }

    .headshot-container{
        display: none;
    }
}

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


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


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

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: #3F403F;
        margin:0px;
    }

    ul.show {
        display: block;
    }


    nav{
        align-items: flex-start;
        flex-direction: column-reverse;
        background-color: #3F403F;
    }

    .logo{
        display: none;
    }
}

.map-container{
    display:flex;
    flex-direction: column;
    justify-content:center;
    align-items:center;
    margin-top: 0px;
}

.contact-form-container{
   display: flex;
   justify-content:center;
    align-items:center;
}

form {
    background-color: #424459;
    display: flex;
    flex-direction: column;
    padding: 30px;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
}

form input, form textarea{
    border: 0;
    margin: 10px 0;
    padding: 20px;
    outline: none;
    background: #f5f5f5;
    font-size: 16px;
}

form button{
    padding: 15px;
    background: #9CAF88;
    color: white;
    font-size: 18px;
    border: 0;
    outline: none;
    border-radius:30px;
}

form button:hover{
    background-color: grey;
}

.footer-caption{
    font-size: 20px;
    font-weight: 200;
    padding: 10px;
}


.button-directions {
    width: 200px;
    height: 55px;
    background-color: #9CAF88;
    border-radius: 25px;
    text-align: center;
    font-size: 30px;
    font-weight: 100;
    padding-top: 5px;
    margin-top: 20px;
}

.button-directions:hover {
    background-color: #E9806E;
}

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

.aboutmelist{
    display: flex;
    flex-direction: column;
    color: white;
    font-weight: 100;
    font-size: 17px;
}

.lessonbutton{
    width: 200px;
    height: 55px;
    background-color: #9CAF88;
    border-radius: 25px;
    text-align: center;
    font-size: 25px;
    font-weight: 100;
    padding-top: 5px;
    margin-top: 20px;
}


.lessonbutton:hover {
    background-color: #E9806E;
}

.lessonbutton:active {
    background-color: #898989;
    color: #808080
}