.vinyl-container {
  position: absolute;
  left: 0;
  top: 0;

  width: 100%;
  height: 100vh;

  overflow: hidden;
  pointer-events: none;
}

.vinyl-scene {
  width: 100%;
  height: 100%;
  perspective: 1200px;
  margin-left: -40vw;
  margin-top: -35vh;
}

.vinyl-stack {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
}

.vinyl {
  position: absolute;
  width: 120%;
  height: 21.875rem;
  left: -10%;

  transform: translateY(200px) scale(0.9);
  opacity: 0;

}

.vinyl svg {
  width: 100%;
  height: 100%;
  display: block;
}