body {
    background: lightblue;
    font-family: Arial, sans-serif;
}

#buttons button {
    margin: 5px;
}

.gif-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.gif-card {
    background: white;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.gif-card img {
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
}