.gallery li{
    height: 300px;
    width: 360px;
    gap: 24px;
}
.gallery li img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gallery{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    grid-auto-rows: auto;
    gap: 48px;
}