body {
    background-color: rgb(218, 207, 193);
}

div > img {
    border-radius: 8px;
    height: auto;
    width: 100%;
    box-shadow: 0 0 30px #000;
    transition: all 0.5s ease;
    border: #000 groove 3px;
}

div > img:hover{
    transform: translateY(-10px);
    box-shadow: 0 0 50px #000;
}

div {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
    gap: 25px;
}