.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: -5vh;
}

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

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

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

}

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

@media (max-width: 1024px) {
  .vinyl-scene {
    margin-top: -35vh;
  }

  .vinyl {
    height: 350px;
  }

  .vinyl-container {
    position: fixed;
  }

  .vinyl-container.invite {
    position: absolute;
  }
}