/* Add custom CSS styles below */ 
main,section{
    /*background-color: #f9f9f9;*/
}
.lg\:grid-cols-5 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
@media screen and (max-width: 750px) {
.lg\:grid-cols-5 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media screen and (max-width: 450px) {
.lg\:grid-cols-5 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}