.N-h3{
    font-family: Lora;
    font-size: 40px;
    text-align: center;
}
#container{
    display: flex;
    flex-direction: row;

}

#left-side h1{
    font-size: 34px;
    margin-bottom: 4%;
}
#left-side li{
    padding: 3% 0%;
    width: 80%;
    margin: auto;
}
#left-side li:hover{
    background-color: rgb(170, 170, 170);
    border-radius: 10px;
    transition: all .5s ease;
}
#right-side{
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
#cat-box{
    border: 2px solid black;
    min-width: 300px;
    max-width: 301px;
    min-height: 200px;
    max-height: 201px;
    margin: 2%;
    position: relative;
    text-align: center;
}
#cat-link{
    text-decoration: none;
    color: black;
    
}
#cat-link img{
    min-width: 297px;
    max-width: 297px;
    min-height: 197px;
    max-height: 197px;
}
.cat-heading{
    position: absolute;
    bottom: 8px;
    left: 20px;
    right: 20px;
    color: white;
}

@media only screen and (max-width: 880px ){

#container{
    display: flex;
    flex-direction: column;
}
#left-side{
    width: 100%;
}
#right-side{
    width: 100%;
}
#left-side ul{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
#left-side li{
    width: 40%;
      padding: 1% 0%;
}
}

