* {
  box-sizing: border-box;
}

.wall{
    background: url("../img/stargaze.jpg");
    background-size: cover;
  }
  
  html, body{
    height: 100%;
    width: 100%;
    overflow: hidden;
  }
  
  body{
    background: #000;
    text-align: center;
    padding: 0;
    margin: 0;
  }
  
.main {
    position: relative;
    height: 100%;
}

  .main:before{
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }
  
  .scene{
    display: inline-block;
    vertical-align: middle;
    perspective: 5px;
    perspective-origin: 50% 50%;
    position: relative;
  }
  
  .wrap{
    position: absolute;
    width: 1000px;
    height: 1000px;
    left: -500px;
    top: -500px;
    transform-style: preserve-3d;
    animation: move 12s infinite linear;
    animation-fill-mode: forwards;
    
  }
  
  .wrap:nth-child(2){
    animation: move 12s infinite linear;
    animation-delay: 6s;
  }
  
  .wall {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    animation: fade 12s infinite linear;
    animation-delay: 0;
  }
  
  .wrap:nth-child(2) .wall {
    animation-delay: 6s;
  }
  
  .wall-right {
    transform: rotateY(90deg) translateZ(500px);
  }
  
  .wall-left {
    transform: rotateY(-90deg) translateZ(500px);
  }
  
  .wall-top {
    transform: rotateX(90deg) translateZ(500px);
  }
  
  .wall-bottom {
    transform: rotateX(-90deg) translateZ(500px);
  }
  
  .wall-back {
    transform: rotateX(180deg) translateZ(500px);
  }
  
  @keyframes move {
    0%{
      transform: translateZ(-500px) rotate(0deg);
    }
    100%{
      transform: translateZ(500px) rotate(0deg);
    }
  }
  
  @keyframes fade {
    0%{
      opacity: 0;
    }
    25% {
      opacity: 1;
    }
    75% {
      opacity: 1;
    }
    100%{
      opacity: 0;
    }
  }
  
.whitest{
    overflow-y: auto;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.bassdrop {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    overflow-y: auto;
    background-color: white;
    margin: 0 auto;
    padding: 30px 0;
    min-width: 200px;
    max-width: 30%;
    width: 100%;
    height: 100%;

}


.drop {
  margin: 0 auto;
  width: 70%;
  max-height: 60vh;
  min-height: 10em;
}

.buttons {
    width: 100%;
    max-width: 70%;
    margin: 0 auto;
}

.buttons a {
    display: block;
    font-family: monospace;
    font-size: 2rem;
    text-decoration: none;
    background-color: #000;
    color: #FFF;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5%;
    margin: 5% 0;
}

.achtung a {
    font-family: monospace;
    text-decoration: none;
    font-size: 1rem;
    color: #000;
}

@media screen and (max-width:1024px) {
  .buttons a {font-size: 1.5rem;}
}

@media screen and (max-width:768px) {
  .buttons a {font-size: 1rem;}
}

@media (orientation: landscape) and (max-height:700px) and (max-width:1024px) {
  .bassdrop {
    gap: 2%;
  }
  .drop {
    min-height: 35vh;
  }
  .buttons {
    margin: 1%;
    padding: 1%;
  }
  .buttons a {
    font-size: 0.85rem;
  }
  .achtung {
    margin: 1%;
    padding: 1%;
  }
}
  
  
  
  
  
  
  
  
  /* 
  .scene { 
    animation: 🤫 300s infinite linear;
  }
  
  @keyframes 🤫 {
    0%{
      filter: hue-rotate(0)
    }
    50% {
      filter: hue-rotate(180deg) saturation(5);
      transform: scaleX(4000);
      perspective: 50px;
    }
   
    100%{
      filter: hue-rotate(360deg);
    }
  } 
  */
  