body{
    font-family: soleil,sans-serif;
    font-weight: 400;
    font-style: normal;
}

.container{
    width: 80%;
    margin: auto;

}

h1{
    font-family: soleil, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-align: center;
    margin-bottom: 0;
    margin-top: 50px;
}

h2{
    font-family: soleil,sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    text-align: center;
    margin-top: 10px;
}

h3{
    text-align: center;
    margin-top: 0;
    padding-bottom: 10%;
    font-size: 18px;
    font-weight: 600;
}

ul{
    padding-left: 0;
    padding-top: 60px;
    display: grid;
    /* background-color: #eeeeee; */
    grid-template-columns: 1fr 1fr 1fr;
}

li{
    list-style: none;
    background-color: #ffffff;
    margin: 5%;
    box-shadow: -1px 5px 16px 0px #dddddd;
    transition-duration: 300ms;
    transition-timing-function: ease-in-out;
}

li:hover{
    box-shadow: -1px 5px 16px 7px #dddddd;
    margin: 3%;
    font-size: 20px;
}

img{
    width: 90%;
    margin: 5%;
    
}

a{
    text-decoration: none;
    color: black;
}

@media (max-width: 676px){
    ul{
        display: block;
    }

    h3{
        padding-bottom: 10%;
        font-size: 18px;
    }
}

@media (max-width: 830px){
    h3{
        font-size: 15px;
    }
}