/* Style général */
body {
    font-family: 'Source Sans Pro', sans-serif;
    text-align: center;
    background: url('../../images/fond-bibliothèque.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    margin: 0;
    padding: 0;
    position: relative; /* Permet de positionner les enfants avec position absolute */
    
}
html, body {
    height: 100vh;
    overflow: hidden; /* Désactive le défilement */
}


/* Conteneur principal */
.container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh;
    padding-top: 50px;
}
/* Bouton */
button {
    position: absolute; /* Permet de le placer n'importe où */
    top: 38%; /* Position par défaut au centre vertical */
    left: 52%; /* Position par défaut au centre horizontal */
    transform: translate(-50%, -50%); /* Centre le bouton exactement */
    
    background: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Effet au survol 
button:hover {
    background: #0056b3;
    transform: translate(-50%, -50%) scale(1.05); /* Effet d'agrandissement au survol 
}*/

button:hover {
    background: #0056b3;
    transform-origin: center;
    padding: 14px 26px;
}



/*button:hover {
    background: #0056b3;
    transform: scale(1.05);
}*/

/* Placement du logo et de la directrice */
.image-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Logo Faculté (haut gauche) */
.top-left {
    top: 20px;
    left: 20px;
}

/* Directrice (haut droit) */
.top-right {
    top: 20px;
    right: 20px;
}

/* Style des images */
.profile-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10%;
}

/* Style des légendes */
.caption {
    font-size: 16px;
    font-weight: bold;
    color: white;
    margin-top: 5px;
    text-align: center;
}