body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Alignement au début de la moitié supérieure */
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.citation {
    width: 50%;
    height: 50%;
    z-index: 99999;
    text-align: center;
}

h1 {
    color: white;
}

cite {
    color: white;
}

.citation-color {
    color:red;
}

.background-image, .playing-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.background-image {
    background-image: url('background.jpg');
}

.playing-background-image {
    background-image: url('playing_background.jpg');
}

.audio-players {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20vh; /* Espacement depuis le haut de 20% de la hauteur de la vue */
}

.audio-button {
    opacity: 0.6;
    background-color: black;
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    padding: 10px 20px;
    margin-bottom: 10px; /* Espacement entre les boutons */
}

.audio-button:hover {
    opacity: 0.8;
}

.hidden {
    display: none;
}
