
@media only screen and (min-width: 32.5em) {

    nav ul {
        display:flex;
        
    }

    nav ul li {
        flex: 1 1 100%;
        text-align: center;
    }
}

header {
    background-color: white;
    padding-top: 1rem;

    
}

h1, h2, h3, h4, a {
    font-family: 'Libre Baskerville', serif;
}

p, footer {
    font-family: 'Work Sans', sans-serif;
}

body {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    line-height: 1.5;
    background-color: #4D98D1;
    max-width: 767px;
    margin: 0 auto;
    display: grid;
}

img {
    border-radius: 1%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

.main-body {
    background-color: #C7E5F4;

    padding-left: 3rem;
    padding-right: 3rem;
}




nav ul li a { 
    text-decoration: none;
    text-align: center;
    color: #E2EEF3;
    font-size: 1.2rem;

    
} 


nav{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    background-color: gray;
    
}

nav ul{
    list-style-type: none;
    margin: 0;
    padding: 0;

}


li{
    padding: .5rem;

}

nav ul li:hover {
    background-color: #8F8f8f;
  }

.title {
    text-align: center;
}

footer {
    
    padding: 1rem;
    line-height:1;
    font-size: 80%;
    padding-bottom: .5rem;
    background-color: #90CCF4;
    border-radius: 1%;
}

html {
    -webkit-text-size-adjust: 100%;
}


