/*Body Design*/
body {
    background-color:#fcf4eb;
    margin-left: 50px;
    margin-right: 50px;
    min-width: 500px;
    max-width: 1000px;
    width:95%
}

header h1 {
    background-color: #e4e5f2;
    font-family: "reenie-beanie", sans-serif;
    font-size: 100px;
    color: #62b5aa;
    line-height: 90px;
    text-align: center;
}

h2 { 
    font-family: "quicksand", sans-serif;
    font-size: 45px;
    line-height: 50px;
    color: #3a3a3b;
    text-align: center;
}

h3 {
    color:#7d7d80;
    font-family: "eb-garamond", serif;
    font-size: 30px;
    line-height: 25px;
    text-align: center;
}

h4 {
    color: #959596;
    font-family: "quicksand", sans-serif;
    font-size: 25px;
    line-height: 100%;
}

.info a, address {
    color: #3a3a3b;
    font-family: "quicksand", sans-serif;
    font-size: 30px;
    line-height: 50px;
}

p {
    color:#959596;
    font-family: "eb-garamond", serif;
    font-size: 20px;
    line-height: 35px;
    padding-left: 45px;
   
}

.print a {
    color: #3a3a3b;
    font-family: "quicksand", sans-serif;
    font-size: 20px;
    line-height: 100px;
}

ul {
    color: #959596;
    font-size: 25px;
    font-family: "eb-garamond", serif;
    line-height: 40px;
    list-style-type: circle; 
    margin: 5px;
    padding: 10px;
}


/*Navigation Design*/
nav li { 
    display: inline;
    text-align: center;
}

nav li a {
    color: #7d7d80;
    text-align: center;
    text-decoration: none;
    padding: 10px;
    
}

nav li a:hover {
    background-color: #e4e5f2;
    padding: 15px;
}

nav ul {
    background-color: #faecdc;
    font-size: 25px;
    font-family: "quicksand", sans-serif;
    list-style-type: none;
    margin: 5px;
    padding: 10px;
    overflow: hidden;
    text-align: center;
}




/*Mobile Design*/
@media screen and (max-width: 568px) {
    body {
        font-size: 10vw;
        margin-left: auto;
        margin-right: auto;
        min-width: 100px;
        max-width: 500px;
        width:90%;
    }
    header h1{
        background-size: 685px;
        font-size: 100px;
        padding-left: 35px;
        text-align: justify;
    }
    p {
        font-size: 7vw;
    }
    ul {
        font-size: 7vw;
    }