body {
    background-image: url('Image/FOND_DECRAN.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    font-family: Arial, sans-serif;
    text-align: center;
}

.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column; /* Organise les éléments en colonne */
    align-items: center; /* Centre les boîtes */
}

.box {
    display: flex;
    align-items: center;
    width: 80%;
    max-width: 600px;
    padding: 15px;
    margin: 15px auto;
    border: 1px solid black;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
}

.logo {
    width: 80px; /* Taille maximale du logo */
    height: auto;
    margin-right: 15px;
}

.description {
    flex-grow: 1; /* Permet à la description de prendre l'espace central */
    text-align: center;
}

.tracteur {
    width: 120px; /* Taille maximale de l'image du tracteur */
    height: auto;
    margin-left: 15px;
}

.quiz {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
}


.popup {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border: 1px solid black;
    text-align: center;
}

.popup img {
    width: 150px;
}

.close {
    cursor: pointer;
    color: red;
    font-size: 50px;
}

