* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none;
  user-select: none;
}

.viewport {
  position: fixed;
  width: 100dvw;
  height: 100dvh;
  background-color: rgb(164 160 160 / 75%);
  overflow: hidden;
  background-image: radial-gradient(ellipse 1213px 700px, transparent 56%, #4c4c4c2e 70%);
}

.canvas-container {
  position: absolute;
  top: 31%;
  height: 35dvh;
  width: 370dvw;
  display: flex;
  will-change: transform;
}

.canvas {
  height: 100%;
  width: 50%;
  background-color: #00000012;
  display: flex;
  justify-content: space-around;
  align-items: center;
  /* gap: 77px; */

  background-image: linear-gradient(0deg, #a9a9a90a 0%, #ffffff26 50%, #00000000 100%);
}

img {
  display: block;
  width: 10dvw;
  object-fit: contain;
  border-radius: 5px;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.95),
    0px 0px 32px 18px rgba(0, 0, 0, 0.2);
  will-change: transform;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
}

.music-title {
  position: absolute;
  font-family: "JetBrains Mono", "Courier New", monospace;
  top: 13dvh;
  left: 50%;
  color: #fffff7;
  font-size: 2.5rem;
  letter-spacing: 2rem;
  word-spacing: -2rem;
  text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.8);
  z-index: 999;
}

@keyframes titleFadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, 20px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 10px);
  }
}