* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    padding: 20px;
    text-align: center;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.zones {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}
 .img {
    max-width:100%;
 }

.zone {
    width: 150px;
    height: 150px;
    border: 2px dashed #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-color: white;
    overflow: hidden;
    flex-direction: column;
    margin:5px 5px 5px 5px;

}

.zone .word {
    margin-top: 5px;
    font-size: 1rem;
    color: inherit;
}


.images {
    display: flex;
    justify-content: space-around;
}

.draggable {

    margin: 10px;
    cursor: pointer;
}

.correct {
    background-color: lightgreen;
}

/* Style du popup */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    background-color: #f0f0f0;
    border: 2px solid #000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.popup button {
    margin-top: 10px;
}

