body {
  font-family: sans-serif;
  font-size: 18px;
  /* background: linear-gradient(
        90deg,
        rgba(255, 0, 0, 1) 0%,
        rgba(255, 154, 0, 1) 10%,
        rgba(208, 222, 33, 1) 20%,
        rgba(79, 220, 74, 1) 30%,
        rgba(63, 218, 216, 1) 40%,
        rgba(47, 201, 226, 1) 50%,
        rgba(28, 127, 238, 1) 60%,
        rgba(95, 21, 242, 1) 70%,
        rgba(186, 12, 248, 1) 80%,
        rgba(251, 7, 217, 1) 90%,
        rgba(255, 0, 0, 1) 100%
    ); */
  background-image: url("background.jpg");
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  margin: 0;
  height: 100%;
}

html {
  margin: 0;
  height: 100%;
}

#wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

#title-img {
  margin-top: -90px;
  width: 150px;
  height: 150px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 10;
  background-image: url("img/logo.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

#main {
  background: #d6be5a91;
  max-width: 500px;
  width: 90%;
  box-sizing: border-box;

  margin-top: 110px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  border: solid 3px black;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  padding: 10px;
  gap: 10px;
  outline: solid 3px white;
}

#desc {
  text-align: center;
  font-style: italic;
  margin: 4px 0px 30px 0px;
}

.item {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.4);
  box-sizing: border-box;
  user-select: none;
  border-radius: 20px;
  font-weight: bold;
  position: relative;
}

.item:hover {
  background: rgb(214, 190, 90);
}

.item img {
  position: absolute;
  left: 17px;
  top: 8px;
  width: 25px;
}

.song {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


summary {
  justify-content: center;
  list-style: none;
  /* Remove default marker */
  cursor: pointer;
  /* Change cursor to pointer */
}

summary::before {
  /* content: '▶';  */
  position: absolute;
  /* Push the arrow to the left */
  left: 20px;
  top: 7px;
}

details[open] summary::before {
  /* content: '▼';  */
  left: 17px;
  top: 10px;
}

.song {
  background: rgba(214, 190, 90, 0.5);
}
.streaming-list {
  margin-top: 10px;
}
.streaming-list > a {
  display: block;
  padding: 5px;
  font-weight: normal;
  border-bottom: solid 1px rgba(255,255,255,0.3);
}
.streaming-list > a:last-child {
  border-bottom: none;
}
/*.streaming-list > a::after {
  background: white;
  height: 1px;
  width: 100px;
  display: block;
  content: "";
  margin: auto;
}*/

.song a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.separator {
  background: rgba(255, 255, 255, 0.4);
  height: 2px;
  width: 30%;
  margin: auto;
}

#footer {
  background: rgba(255, 255, 255, 0.4);
  padding: 5px;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  margin-top: auto;
}

#footer>* {
  margin: 0px 20px;
}

#footer a {
  text-decoration: underline;
}

#footer a:hover {
  color: #6f6331;
}