.cadre {
    border: 5px solid #0b0b0c; /* Bordure de 2 pixels de large, couleur noire */
    padding: 0px; 
   
    text-align: center; /* Centrer le contenu à l'intérieur */
    display: inline-block; /* Afficher en tant qu'élément en ligne avec largeur automatique */
}

.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.popup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    text-align: center;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}
