body {
    font-family: "Courier New";
    margin: 0;
    height: 100vh;
    background-color: #000;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('images/acceuil/accueil_bck_test.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

area {
    outline: 2px solid green !important;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 451px;
    height: 691px;
    background: url('images/acceuil/clipboard.png') no-repeat center/contain;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.popup-text {
    position: relative;
    top: 17%;
    margin-left: 8%;
    width: 80%;
    color: black;
    line-height: 1.5;
}

.closeBtn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background-color: rgba(1, 255, 39, 0.47);
    color: white;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.background-image {
    width: 100%;
    height: auto;
}

#hoverImageContainer {
    display: none; /* Caché au départ */
    position: fixed;
    top: 58%;
    left: 51%;
    transform: translate(-50%, -50%);
    
}
#hoverImage {
    width: 80%;
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}
#hoverImageContainer:hover #hoverImage {
    opacity: 1;
}
