body {
  margin: 0;
  background-color: white;
  overflow:hidden;
}

.scene {
  position: relative;
  width: 100vw;
  height: 100vh;
  cursor: pointer;
    
  background: radial-gradient(#2e0808 0%, black 70%);

}

.step {
  position: absolute;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;

  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  opacity: 0;
  transition: opacity 1s ease;
}

.step.active {
  opacity: 1;
}

.enter-button {
  position: absolute;
  bottom: 200px;
  left: 49%;
  transform: translateX(-50%);
  padding: 15px 30px;
  background: rgba(5, 5, 5, 0.98);
  color: #fc0b0b;
  text-decoration: line-through;
  font-size: 20px;
  display: none;
}