<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.list {
    display: grid;
    gap: 40px;
    max-width: 100%;
}

.item {
    border-radius: 5px;
    max-width: 350px;
    overflow: hidden;
    background-color: #f9f9f9;
    transition: box-shadow 0.3s;
    cursor: hand;
    margin: auto;
}

.item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.item img {
    width: 100%; /* Adjust the width as needed */
    height: auto; /* Ensures the image keeps its aspect ratio */
    object-fit: cover; /* Optional: ensures image covers the entire area */
}

.item h2 {
    margin: 10px 0;
    text-align: center;
}

@media (max-width: 768px) {

    .item {
        max-width: 90%;
    }
}
</pre></body></html>