.center{
    text-align: center;
}

.img{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px #dad1eb;
    box-shadow: 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    cursor: pointer;
    transform: scale(1.1);
}

.style-text{
    font-family: "Mea Culpa", cursive;
  font-weight: 400;
  font-style: normal;
}

.btn-link{
    display: inline-block;
    padding: 10px 20px;
    background-color: plum;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    font-family: Arial, Helvetica, sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
    transform: translateY(-5px);
    filter: brightness(1.2);
}

.color-fond{
    background-color: #dad1eb;
}


.style-text2 {
      font-family: "Funnel Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.fond-img{
    background-image:url("asset/pexels-karola-g-4709404.jpg");
}

/* arrière plan qui couvre tout l'écran */
.overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.7);
    /* fond noir semi-transparent */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* pour passer devant tout le reste */

}

/* la boite de dialogue */
.alert-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 300px;
    box-shadow: 0px 10px 30px rgba(0,0,0,0.3);
}

/* le btn OK */
#close-alert {
    background-color: #0077b5;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 15px;
}

/* classe qui cache l'alerte */
.hidden {
    display: none !important;
}

