body {
  margin: 0;
  font-family: poppins, Arial, Helvetica, sans-serif;


}
@font-face {
  font-family: robotit;
  src: url(robotit.ttf);
}
@font-face {
  font-family: robot;
  src: url(robot.ttf);
}

h2 {
    letter-spacing: 10px;
    color: #fff;
}

/* SIDEBARS */
.leftBar {
  display: block;
  position: fixed;
  top: 0px;
  left: 0;

  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: robot;
  font-size: 100px;
  width: 120px;
  white-space: nowrap;
  background: #802020;
  color: #101010;
}
.rightBar {
  display: block;
  position: fixed;
  top: 0px;
  right: 0;

  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: robot;
  font-size: 100px;
  width: 120px;
  white-space: nowrap;
  background: #802020;
  color: #101010;
}


/* Header */

.header {
  padding: 60px 0px;
  height: 600px;
  color: white;
  text-align: center;
  border: 2px white;
  border-radius: 4px;
  padding-top: 0px;

}

/* Media Links Section */

.buttonWrap {
  margin: 0px;
  position: relative;
  width: 100px;
  aspect-ratio: 1 / 1;
  transition: transform 0.8s ease;
  cursor: pointer;
}
.buttonWrap:hover {
  transform: translateY(-12px);
}
.buttonWrap:active {
  transform: translateY(-6px);
  transition: transform 0.2s ease;
}

.button {
  position: absolute;
  width: 72%;
  aspect-ratio: 1 / 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0 0 0px 0px #802020, 0 0 0 36px #80202050 inset;
  transition: box-shadow 0.8s ease;
}

.buttonGear {
  position: absolute;
  width: 100%;
  aspect-ratio: 1 / 1;
  transform: translateX(-50%);
  transition: transform 0.8s ease;
  border-radius: 50%;
}
.buttonWrap:hover .buttonGear {
  transform: translateX(-50%) rotate(45deg);
}

/* Button Glow */
.buttonWrap:hover .button {
  box-shadow: 0 0 60px 40px #802020, 0 0 80px 60px #802020 inset;
}
.buttonWrap:active .button {
  box-shadow: 0 0 40px 20px #802020, 0 0 40px 60px #802020 inset;
  transition: transform 0.2s ease;
}


.musicList {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.musicList h3 {
  padding-top: 25px;
}
.scene {
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  align-items: center;
  width: 100%;
  max-width: 900px;
  margin-bottom: 20px;
}
.scene h3:first-child {
  text-align: right;
  padding-right: 20px;
}
.scene h3:last-child {
  text-align: left;
  padding-left: 20px;
}



/* ABOUT SECTION */
.about {
  background: linear-gradient(transparent, 30%, #202020 95%), url(Assets/zuccoback2.png);
  height: fit-content;
  width: 100%;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
.about h2 {
  margin: 40px;
  font-size: 17px;
}
.about a {
  display: block;
  margin: 20px auto;
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: transform 0.3s ease;
  width: fit-content;
}
.about a:hover {
  transform: translateY(-3px);
}
.about a:active {
  transform: translateY(-1px);
}

/* Desktop/mobile adjustments */
@media (max-width: 1024px) {
  .leftBar, .rightBar {
    display: none;
  }
  .scene {
    align-items: left;
  }
  .scene h3:first-child {
    display: none;
  }
  .buttonWrap {
    margin-left: 40px;
  }
}