@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');


/* Styles pour le popup */
#popup {
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    color: rgb(9, 9, 73);
    font-weight: 200;
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
    border: 1px solid #ccc;
    background-color: #dbc599;
    padding: 12px;
    z-index: 1000;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
}

/* Styles pour l'overlay */
#overlay {
    display: none;
    position: fixed;
    top: 50;
    left: 10;
    width: 50%;
    height: 50%;
   
    z-index: 999;
    border-radius: 20px;

}

/* Style du bouton */
.btn {
    padding: 10px 20px;
    background-color: #7390DF;
    color: white;
    font-weight: 500;
    border: none;
    cursor: pointer;
    border-radius: 20px;
}

.btn:hover {
    background-color: #1e4279;
}