/* Estils globals */
body {
    font-family: Courier, monospace;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f0f0;
}

.contenidor {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Manté sempre dues columnes */
    gap: 10px; /* Espai entre imatges */
    width: 90%;
    max-width: 1200px;
    height: 95vh;
    overflow-y: auto; /* Permet el desplaçament vertical */
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    box-sizing: border-box;
}

.element {
    width: 100%;
}

img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 5px; /* Suavitzar les vores */
}

p {
    text-align: center;
    margin-top: 5px;
    font-size: 16px; /* Augmentem la mida del text */
}

/* Media queries per a mòbils i tablets */
@media (max-width: 600px) {
    .contenidor {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 5px;
        height: auto;
    }

    .element {
        width: 48%; /* Manté dues columnes */
    }

    p {
        font-size: 14px; /* Ajustem la mida per a mòbils */
    }
}

@media (max-width: 900px) and (min-width: 601px) {
    .contenidor {
        grid-template-columns: repeat(2, 1fr);
        width: 95%;
        height: auto;
    }

    p {
        font-size: 15px; /* Ajustem per a tablets */
    }
}
