@font-face {
    font-family: TexGyreHerosCNItalic;
    src: url(fonts/texgyreheroscn-italic.otf);
}
@font-face {
    font-family: TexGyreHerosCNRegular;
    src: url(fonts/texgyreheroscn-regular.otf);
}

/**/
:root {
    --mainColor: #484848;
    /*--mainColor: #F91A44;*/
}
::selection {
    color: #ffffff;
    background-color: var(--mainColor);
}
/**/
body, html {
    overflow-x: hidden;
}
body {
    margin: 0;
    padding: 0;
    /*background-color: #F7E3E5;*/
    background-color: #d7d7d7;
    /*background-image: url(images/pink-sparkles.gif);*/
    background-size: cover;
}

/*Typography*/

#lyrics {
    width: 100%;
    position: fixed;
    bottom: 0;
    text-align: center;
    padding: 30px 0;
    margin: auto;
    z-index: 3;
    pointer-events: none;

    /* Fonts */
    font-size: 30px;
    font-family: TexGyreHerosCNItalic;
    filter: drop-shadow(0px 0px 4px var(--mainColor));
}

/**/
#logo {
    position: fixed;
    top: 20px;
    width: 200px;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 500;
}
#website-container {
    display: block;
    width: 100vw;
    height: 100vh;
}
#scrolling-images {
    height: 50vh;
    display: flex;
    flex-direction: row;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    position: absolute;
    align-items: center;

    animation: scroll-left 120s linear infinite;
}
.scrolling-image {
    max-height: 50vh;
    filter: drop-shadow(0px 0px 20px var(--mainColor));
}
#scrolling-images img:nth-child(2n) {
    /* Every 2nd image! */
    max-height: 30vh;
  }
#scrolling-images img:nth-child(3n) {
    /* Every 3rd image! */
    max-height: 40vh;
  }

  @keyframes scroll-left {
    0% {
      transform: translateY(-50%) translateX(0);
    }
    100% {
      transform: translateY(-50%) translateX(-200%);
    }
  }

/*Toolbar*/
#toolbar {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    bottom: 0;
    padding: 20px;
    width: 100%;
    opacity: 0.1;
    transition: all 0.5s;
    z-index: 2;
    box-sizing: border-box;
}
#toolbar:hover {
    opacity: 1;
}
#toolbar-left {
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.toolbar-button {
    display: flex;
    border-radius: 100%;
    border: 1px solid #EEEEEE;
    background-color: #ffffff;
    color: var(--mainColor);
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
    backdrop-filter: blur(5px);
}
.toolbar-button img {
    width: 60%;
}
.toolbar-button:hover {
    /*background-color: #f91a4369;*/
    background-color: #69696969;
}
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}
#menu {
    width: 400px;
    height: 85vh;
    background-color: #e2e2e2d0;
    position: fixed;
    margin-left: -400px;
    margin-top: 20px;

    transition: all 0.5s ease-in-out;
    padding: 20px;
    box-sizing: border-box;
    font-family: TexGyreHerosCNRegular;
    border-radius: 10px;

    border-top: 1.5px solid #ffffff;

    backdrop-filter: blur(5px);
}
#song-selection {
    border-top: 1.5px solid #ffffff;
    box-sizing: border-box;
    width: 200px;
    text-align: center;
    user-select: none;
    padding: 5px 10px;
    position: relative;

    display: inline-block;
    background-color: #e2e2e2d0;
    border-radius: 5px;
}
.dropup {
    /*padding: 5px 10px;*/
    cursor: pointer;
}
.dropup span {
    background-color: rgb(173, 173, 173);
    padding: 0px 10px;
    border-radius: 20px;
    border-bottom: 1.5px solid #ffffff;
}
.song-select {
    display: none;
    border-top: 1px solid #ffffff;
    width: 200px;
    bottom: 100%;
    box-sizing: border-box;
    position: absolute;
    left: -1px;
    margin: 0;
    padding: 0;
    background-color: #e2e2e2d0;

}
.song-select li {
    all: unset;
    list-style: none;
    box-sizing: border-box;
    width: 200px;
    padding: 5px 10px;
    display: block;
    cursor: pointer;
    border-top: 1px solid #ffffff;
}
.song-select li:hover {
    background-color: #000000;
    color: #ffffff;
}
#song-selection:hover .song-select {
    display: block;
}