body {
    margin: 0;
    background-color: YELLOW;
    color: white;
    font-family: Arial, sans-serif;
}

.container {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Default to 1 column */
    gap: 0px; /* Set gap between images to 4 pixels */
    padding: 5px;
}

/* Media query for screens wider than 1000 pixels */
@media (min-width: 1000px) {
    .container {
        grid-template-columns: repeat(2, 1fr); /* Change to 2 columns */
    }
}

.image {
    width: 98%; /* Full width of the column */
    transition: 0.3s;
    padding: 5px; /* Optional padding for aesthetic */
}


.image img {
    width: 100%; /* Make images responsive */
    display: block;
}

.image.dark {
    filter: brightness(50%); /* Darken image when audio plays */
}
