/* * {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: all 0.35s linear;
} */

section {
    --bg-color: #18705e;
    --main-color: #cdff79;
    --dark-color: #004c3d;
    background-attachment: fixed;
    background-color: var(white);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.soundList {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.playerDuo {
    min-height: 100vh;
    width: 100vw;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

#distopia {
    background-image: url("./img/distopia.png");
}

#sophies {
    background-image: url("./img/sophie.webp");
    
}

#tristesse {
    background-image: url("./img/sad.png");
    
}

#jessy {
    background-image: url("./img/jessy.webp");
    
}

#epoque {
    background-image: url("./img/epoque.png");
    
}

#ombre {
    background-image: url("./img/ombre.webp");
    
}

#generique {
    background-image: url("./img/filmroll.webp");
    
}

.trackName {
   /*  color: black; */ 
}

.darkName {
    color: white !important;
}

.scrollButton {
    position: fixed;
    bottom: 20px;
    left: 20px;
    font-size: 24px;
    text-decoration: none;
    color: #fff;
    background-color: #333;
    padding: 10px 15px;
    border-radius: 50%;
    z-index: 999;
  }

  .scrollButton.rotated {
    transform: rotate(-90deg);
  }