@charset "utf-8";

* {
    margin: 1em;
    padding: 0;
    box-sizing: border-box;
}


body {
    display: flex;
    flex-direction: column;
    
    font-family: "questagrande";
    min-height:100vh;
    min-height: -webkit-fill-available;
    
    justify-content: space-between;
    
}

html {
    height: -webkit-fill-avalible;
}



header ul { list-style: none;
    display: flex;
    flex-direction: row
    flex-wrap: wrap;
    justify-content: center
    
}

h1 {
    font-size: 2.5em;
    color: white;
    padding: .5em;
    padding-top: 1em;}


header ul li a {
    width: 100%;
    height: 100%;
    background-color:#FFEFD5; 
    color: 	#FA8072;
    text-decoration: none;
    font-weight: bold;
    justify-content: center;
    display:flex;
    align-items: center;
    border-radius: .3em; 
    align-content: center   
}

li  { flex-basis: 10%;}


header,
footer { flex-grow: 0;
    background-color:peachpuff;
    padding: 2em;
    text-align: center; 
}

main >h2 {    
    font-size: 2.0em;
    color:salmon;
    margin-left: 5em
    padding: .5em;
    padding-top: 1em;}
main > ul li{   
    list-style: none;
    }
    
img {
    max-height: 100%;
    height: auto;
    margin: 1em;
    justify-content: flex-end    
    
    }
    
   
