*{
    margin:0;
    padding:0;
}

header{
    height: 60px;
    background-color: #07393C;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 40px 20px 40px;
    align-items: center;
}

header a{
    font-family: "Playfair Display", serif;
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 26px;
}

.name{
    font-size: 36px;
}

.header-links{
    display: flex;
    justify-content: space-between;
    color: #FFFFFF;
    width: 15%;
}

.header-title{
    color: #FFFFFF;
}

h4{
    font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
}

.toggle-button-container{
    width: 50%;
    margin: auto;
    background-color: #07393C;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 60px;
    display: flex;
    align-items: center;
}


.toggle-button-container.webdev{
    width: 50%;
    margin: auto;
    background-color: #07393C;
    margin-top: 30px;
    border-radius: 60px;
    display: flex;
    justify-content: flex-end;
}

.webdev-title-container{
    background-color: white;
    border: 3px solid #07393C;
    border-radius: 60px;
    padding: 30px;
    width: 40%;
    display: flex;
    justify-content: center;
}

.video-title-container{
    background-color: white;
    border: 3px solid #07393C;
    border-radius: 60px;
    padding: 30px;
    width: 40%;
    display: flex;
    justify-content: center;
}

a, h1{
    font-family: 'Josefin sans', sans-serif;
    font-weight: 500;
    font-size: 36px;
    text-decoration: none;
    color: #07393C;
}

.all-videos-container{
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

iframe{
    width: 640px;
    height: 360px;
    margin-bottom: 20px;
    border: 5px solid #2C666E;
    box-shadow: 0px 0px 0px 3px #90DDF0;
}

.video-caption{
    margin-bottom: 40px;
    font-family:'Josefin sans', sans-serif;
}

footer{
  width: 100%;
  height: 60px;
  background-color: #07393C;
  color: white;
  margin-top: 40px;
}

p {
    font-family: 'Josefin sans', sans-serif;
    font-weight: 300;
    font-size: 20px;
    text-decoration: none;
    color: #000000;
}

.description-container{
    width: 50%;
    margin: auto;
    text-align: center;
    line-height: 25px;
    margin-bottom: 30px;
}

.view-more{
    font-family: 'Josefin sans', sans-serif;
    font-weight: 700;
    font-size: 30px;
    text-decoration: none;
    color: #07393C;
}

footer{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.linkedin, .vimeo, .github{
    width: 30px;
    margin-right: 20px;
}

.webdev-main-container{
    width: 100%;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.site-container{
    margin-bottom: 40px;
    display:flex;
    flex-direction: column;
    align-items: center;
}

.site-screenshot{
    max-width: 600px;
    border: 5px solid #2C666E;
    box-shadow: 0px 0px 0px 3px #90DDF0;
}

.screenshot-caption{
    margin-top: 10px;
    text-align: center;
    width: 45%;
    line-height: 25px;
}

.headshot {
    margin-right: 40px;
width: 35%;
}

.about-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    margin: auto;
    height: 100vh;
}

.about-me-blurb{
    line-height: 25px;
}

.form-container{
 height: 100vh;
}

.contact-form{
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-top: 100px;
    justify-content: center;
    font-family: 'Josefin Sans', sans-serif;
    border: 5px solid #2C666E;
    box-shadow: 0px 0px 0px 3px #90DDF0;
    width: 50%;
    border-radius: 10px;
    font-size: 16px;
    padding: 50px 0px;
}

.form-line{
    display: flex;
    margin: 20px;
    color: #2C666E;
    font-size: 24px;
    justify-content: center;
}

input, textarea{
    border: 1px #2C666E solid;
    border-radius: 10px;
    margin-left: 10px;
    padding: 10px;
    font-family: 'Josefin Sans', sans-serif;
    color: #2C666E;
    font-size: 18px;
}

input:focus, textarea:focus{
    outline: 2px solid #90DDF0;
}

input:-webkit-autofill, textarea:-webkit-autofill{
    color: #2C666E;
}

#submit{
    width: 40%;
    padding: 15px;
    font-size: 28px;
    color: #2C666E;
    background-color: #FFFFFF;
    border: 2px solid #2C666E;
    box-shadow: 0px 0px 0px 1px #90DDF0;
    font-weight: 700;
}

#thank-you-message {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 28px;
    color: #2C666E;
    margin: 150px 30px;
    text-align: center;
    line-height: 35px;
}


@media (max-width: 1200px){
    .toggle-button-container, .toggle-button-container.webdev{
        width: 80%;
    }

    .header-links{
        flex-direction: column;
    }

    .description-container{
        width: 80%;
    }

    .screenshot-caption{
        width: 80%;
    }
}

@media (max-width: 700px){


    .toggle-button-container, .toggle-button-container.webdev{
        width: 90%;
    }

    a{
        font-size: 20px;
    }

    .name {
        font-size: 24px;
    }

    header a {
        font-size: 20px;
    }


    iframe{
        width: 320px;
        height: 180px;
    }

    .site-screenshot{
        width: 300px;
    }

    .about-container{
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-top: 150px;
    }

    .headshot{
        width: 70%;
        margin-top: -150px;
        margin-bottom: -50px;
    }

    .contact-form{
        width: 90%;
    }

}