body{
    margin: 0;
    padding: 0;
    font-size: calc(10px + 0.3vw);
}
.wrapper{
    background-color: #F0DBDB;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-bottom: 2vh ;
    line-height: 20px;
}

#box{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 2vh 0 5vh 0;
    height: auto;
    visibility: hidden;
}

nav{
    border: #FEFCF3 solid 1px;
    background-color: #DBA39A;
    min-height: 90vh;
    align-self: stretch;
    padding: 2% 0;
    width: 30vw;
    display: flex;
    justify-content: center;
    list-style: none;
    font-size: 20px;
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

header{
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 83.5vw;

}



header p{
    text-align: center;
    margin: 1%;
}

.header-box{
    border:2px solid #FEFCF3;
    background-color: #DBA39A;
    width: 100%;
    display: flex;
    align-self: center;
    justify-content: space-evenly;
    margin-top: 2vh;
}

a{
    text-decoration: none;
}

ul{
    list-style-type: none;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding-left: 0;
}

li {
    display: flex;
    border: 1px solid #DBA39A;
    background-color: #FEFCF3;
    padding: 4vh 5vw;
    justify-content: center;
    /*border-radius: 30%;*/
}

main {

    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 2%;
    width: 50%;
    min-height: 90vh;
    height: auto;
    border:1px solid #DBA39A;
    background-color: #F5EBE0;
}

main div{
    background-color: #F5EBE0;
}

img{
    max-width: 100%;
    /*height: 50vh;*/
}

footer{
    background-color: #DBA39A;
    display: flex;
    justify-content: center;
    width: 83.3vw;
    padding: 2vh 0;
    border:2px solid #FEFCF3;
}

hr{
    border:1px dashed #DBA39A;
    width: 45vw;
}

a:link{
    color: black;
}

a:visited{
    color: black;
}

a:hover{
    color: #DBA39A;
}

a:active{
    color: black;
}

.me{
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.img-box{
    display: flex;
    flex-direction: column;
    width: 30%;
    align-items: center;
    /*height: 60vh;*/
}
.informal{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4%;
    /*height: 50vh;*/
}
.summary{
    padding-left: 10%;
}

.age-box{
    margin-left: 10vw;
    width: 20vw;
    padding:2vh 2vw 2vh 6vw;
    border-left:2px solid #FEFCF3;
}
label{
    font-size: calc(10px + 0.3vw);
}

.title{
    align-self: center;
    margin-left: 10%;

}

#age{
    width: 4vw;
    height: 5vh;
    margin-right: 2vw;
    border: 1px solid #DBA39A;
    background-color: #FEFCF3;
    font-size: calc(8px + 0.3vw);
    text-align: center;

}

 button {
     height: 6vh;
     width: 7vw;
     align-self: center;
     display: flex;
     align-items: center;
     font-size: calc(10px + 0.2%);
     justify-content: center;
     border: 1px solid #DBA39A;
     background-color: #FEFCF3;
}

 button:hover{
    text-decoration: underline;
 }

 .feature{
     display: flex;
     margin-top: 2vh;
 }

@media screen and (max-width: 750px){

    button {
        font-size: calc(7px + 0.2%);
        overflow: hidden;
    }


    nav{
        background-color: #F0DBDB;
        display: flex;
        justify-content: center;
        list-style: none;
        border: none;
        width: 100vw;
        padding-left: 0;
        min-height: 0;
    }

    header{
        display: flex;
        justify-content: center;
        flex-direction: column;
        width: 60vw;

    }

    header p{
        text-align: center;
        margin: 1%;
    }

    .title{
    padding: 3vh 0;
    font-size: calc(15px + 0.3vw);
    }

    a{
        text-decoration: none;
    }

    ul{
        display: flex;
        flex-direction: row;
        background-color: #27374D;
        padding-left: 0;
    }

    li {
        display: inline;
        border: 1px solid #DBA39A;
        background-color: #FEFCF3;
        padding: 0.5vw;

    }

    main {
        display: flex;
        align-items: center;
        flex-direction: column;
        padding: 2%;
        width: 50%;
        height: auto;
        border:1px solid #DBA39A;
        margin: 1%;
        background-color: #F5EBE0;
    }

    main div{
        background-color: #F5EBE0;
    }

    img{
        max-width: 100%;
        height: 50vh;
    }

    footer{
        background-color: #DBA39A;
        display: flex;
        justify-content: center;
        width: 60vw;
        padding: 2vh 2vw;
        border:2px solid #FEFCF3;
        margin: 1%;
    }

    .wrapper{
        background-color: #F0DBDB;
    }

    #box {
        display: flex;
        flex-direction: column;
        padding: 0;
    }

    .img-box{
        width: 50vw;
    }

    .informal{
        width: 50vw;
        padding: 0;
    }

    .me{
        display: flex;
        flex-direction: column;
    }



}


