body {
  margin: 0;
  background-color: #000000;
  color: #dff3e3;
  overflow-x: hidden;
}

header {
  background: #010f16;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  color: #eeeeee;
  position: sticky;
  top: 0;
  z-index: 2;
  font-family: sans-serif;
}

header button {
  width: 5%;
  text-align: center;
}

header h1 {
  width: 20%;
  text-align: center;
}
#toggleSidebar {
  background: transparent;
  border: none;
  color: #f3f1ee;
  font-size: 1.8rem;
  cursor: pointer;
  margin-right: 1rem;
}

#sidebar {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #010f16;
  width: 200px;
  height: 100vh;
  transform: translateX(-200px);
  transition: transform 0.3s ease;
  z-index: 3;
  display: flex;
  flex-direction: column;
}

#sidebar.open {
  transform: translateX(0);
}

#sidebarMenu {
  list-style: circle;
  padding: 0;
  margin-top: 2rem;
}

#sidebarMenu li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  color: #e7f3df;
  border-style: outset;
  border-color: #010f16;
  width: auto;
  font-family: sans-serif;
  text-decoration: none;
}

#sidebarMenu li a:hover {
  background-color: #6a87b9;
  color: #070b4c;
  transition: 0.15s ease;
}

#closeSidebar {
  width: fit-content;
  background: inherit;
  color: #acd0d2;
  font-size: 1.8rem;
  align-self: center;
  border: none;
  margin-top: 5%;
  margin-bottom: 0;
}

main {
  padding: 3rem 3rem 10rem 3rem;
  max-width: 960px;
  margin: auto;
}

#coverArtContainer {
  position: relative;
  text-align: center;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

#coverArt {
  max-width: 100%;
  border-radius: 3%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

#sectionText section {
  margin: 0.5rem;
  padding: 1rem;
  background-color: #010f16;
  border-radius: 8px;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#sectionText section.active {
  display: block;
  opacity: 1;
}

#sectionText h2 {
  text-align: center;
  font-size: 1.5rem;
}

#sectionText {
  font-family: sans-serif;
  font-size: large;
}

a {
  text-decoration: none;
  color: rgb(65, 185, 201);
}

footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 10%;
  background: #010f16;
  padding: 0.5rem 0 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  font-size: larger;
  justify-content: space-between;
  font-family: sans-serif;
}

.player-controls {
  display: flex;
  width: 95%;
  align-items: center;
  justify-content: space-evenly;
}

footer button {
  display: flex;
  width: 10%;
  justify-content: center;
  background-color: #81c4d8;
  border-color: #aa9d2b;
  border-style: outset;
}

/*footer button img {
  filter: invert();
}
*/

#playPause {
  width: 15%;
  gap: 0rem;
}
#volume {
  width: 11%;
}

#seekBar {
  width: 85%;
}

#currentSectionName {
  font-weight: bold;
  padding-bottom: 0.5rem;
  font-size: 2rem;
  text-align: center;
}
