

@media only screen and (min-width: 500px) {
    .grid{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 10px;
    }
}

@media only screen and (min-width: 600px) {
    .grid{
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 10px;
    }
}

@media only screen and (min-width: 1000px) {
    .grid{
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        row-gap: 10px;
    }
}

@media only screen and (min-width: 1200px) {
    .grid{
        display: grid;
        grid-template-columns: repeat(6, minmax(0, 1fr));
        row-gap: 10px;
    }
}

.gird > div{
    padding: 20px;
}
.grid > div:hover{
    cursor: pointer;
    box-shadow: 1px 5px 5px black;
}


