@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&display=swap');
:root{
    --pri: #111516;
    --sec: #595e64;
    --highlights: #FFB106;
    --text: #d8dddf;
}
body{
    background-color: var(--pri);
    /* overflow: hidden; */
    color: var(--text);
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* row-gap: 40px; */
    text-transform: uppercase;
}
ul{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* grid-template-rows: 550px 3fr 3fr; */
    /* row-gap: 50px; */
    width: fit-content;
    margin: 0 auto;
    list-style-type: none;
    padding: 0;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}
li{
    list-style-type: none;
    width: fit-content;
    height: fit-content;
    align-items: center;
    justify-content: center;
}
img{
    width: 300px;
    height: 300px;
    transition: .4s;
    border-radius: 25px;
    filter: saturate(0);
}
/* div{
    min-width: 400px;
    min-height: 400px;
} */
img:hover{
    transform: scale(1.1) translateY(-10px);
    cursor: pointer;
    transition: .4s;
    /* box-shadow: 0px 0px 90px var(--highlights); */
    filter: saturate(1);
}
.gtavc{
    object-fit: cover;
    object-position: center;
}

@media (min-width: 430px) and (max-width: 767px){
    body{
        height: 100%;
    }
    ul{
        grid-template-columns: repeat(1, 1fr);
        column-gap: none;
        height: min-content;
    }
    li{
        width: 100%;
        height: 100%;
    }
    img{
        border-radius: 0px;
        width: 100%;
        height: 100%;
    }
    img:hover{
        transform: none;
    }
}