/* Place your CSS styles in this file */

h1 {
    text-align: center;
    font-weight: normal;
    font-size: 5em;
    font-family: 'Sacramento', cursive;
}

.content {
    min-height: calc(100% - 50px);
    box-sizing: border-box;
}

.navigationbuttons {
    width: 250px;
    height: 50px;
    background-color: rgba(255, 210, 227, 0.493);
    border: 0;
    margin-right: 75px;
    font-size: 2em;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Sen', sans-serif;
}

.headerbox{
    display: inline-block;
}

.header {
    width: 100%;
    text-align: right;
}

.bio {
    width: 500px;
    font-family: 'Sen', sans-serif;
}
.main {
   padding: 40px;
   display: flex;
   justify-content: center;
}

.formBox{
   padding: 40px;
   display: flex;
   justify-content: center;
}

.imageWrapper {
    width: 500px;
    text-align: center;
}

.portrait {
    border-radius: 20px;
    width: auto;
    max-width: 400px;
    min-width: 200px;
    background-color: aqua;
}

.footerImg{
    margin-right: 50px;
}

form {
    font-family: 'Sen', sans-serif;
}

.inputBox {
    width: 400px;
    height: 30px;
    font-size: 1.2em;
    font-family: 'Sen', sans-serif;
}

.inputBoxMessage {
    width: 400px;
    max-width: 400px;
    min-width: 400px;
    max-height: 600px;
    height: 100px;
    font-size: 1.2em;
    font-family: 'Sen', sans-serif;
}

.formButton {
    width: 350px;
    height: 50px;
    cursor: pointer;
    font-family: 'Sen', sans-serif;
    font-size: 1.2em;
}

.formButtonDiv {
    text-align: right;
}
.verticalDiv {
    margin-top: 60px;
}

footer{
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50px;
    color: white;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}



@media only screen and (max-width: 900px) {
  /* For mobile phones: */
    .imageWrapper{
        display: block;
        width: 100%;
    }
    .portrait{
        width: 80%;
    }
    .main{
        display: block;
    }
    .verticalDiv {
        margin: 0;
    }
    .header{
        display: flex;
        justify-content: center;
        text-align: center;
    }
    .navigationbuttons{
        margin-right: 0;
        width: 175px;
    }
    .headerbox{
        display: block;
        width: auto;
        margin: 0 5px;

    }
    .verticalDiv {
        display: flexbox;
    }
    .bio {
        width: auto;
    }

    footer{
        position: relative;
    }
    h1{
        font-size: 3.5em;
    }

    .inputBox{
        width: 300px;
    }

    .inputBoxMessage{
        width: 300px;
        min-width: 300px;
    }
}