@import url(https://fonts.googleapis.com/css2?family=Open+Sans&display=swap);


body{
    font-size: 16px;
    background-color: rgb(190, 192, 192);

}

main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    margin: 0 auto;
    font-size: 1rem;
    
}


.grid{
    padding: 2rem;
    margin: auto;
}

header, footer {
    background-color:  rgba(27, 89, 117, 0.753);
    text-align: center;
    font-size: 1.5em;
    margin: 30px;

}


footer{
    font-size: 1em;
}

h1, h2, main, body{
    font-family: 'Open Sans', sans-serif;

}

ul{
    background-color: rgba(27, 89, 117, 0.753);
    border-radius: 3px;
    padding: 20px 20px 20px;
    margin: 30px;


}

li:first-child{
    font-size: 1.5em;
    margin-bottom: 20px;
    padding: 2px 0;
    border-bottom: 1px solid;
    text-align: center;
    list-style: none;
}
 
li{
    list-style: none;
    font-size: 1em;
    margin-bottom: 5px;
    margin-right: 15px;

}

li:nth-last-child(){
    font-size: 1.4em;
}

img{
    display:block;
    width:100%;
    border-style: double;
    list-style: none;
    margin: 5px;
    justify-items: center;
    
}


