body {
    font-family: Arial, sans-serif;
    background-color: white;
    text-align: center;
    margin: 0;
    padding: 2vmin;
}



h1 {
    color: red;
}

p {
    text-align: justify;
    color: black;
    max-width: 45vmin;
    margin: 1vmin auto;
}

.card {
    width: 32vmin;
    margin: 2vmin auto;
    padding: 2vmin;
    text-align: center;
    border: 0.2vmin solid red;
    border-radius: 1vmin;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.card img {
    max-width: 27vmin; /* Limite la taille des grandes images */
    height: auto;
    border-radius: 1vmin;
    margin-bottom: 1.5vmin;
}

.hidden {
    display: none;
}

button {
    padding: 1vmin 2vmin;
    margin-top: 1vmin;
    cursor: pointer;
    border: none;
    border-radius: 0.5vmin;
    background-color: red;
    color: white;
    font-size: 1.6vmin;
}
