:root {
  font-size: 100%;
  font-family: "Swiss Now";
}

body {
  background-color: rgb(105, 195, 230);
  overflow: hidden;
}

.container {
  position: relative;
  width: 98vw;
  height: 98vh;
  align-items: center;
}

.box {
  position: absolute;
  text-align: center;
  width: 1450px;
  height: 650px;
}

.boxWE {
  top: 10px;
  left: 0px;
  z-index: 1; /* Diese Box ist weiter hinten */
}

.boxLOVE {
  top: 180px;
  left: 200px;
  z-index: 2; /* Diese Box liegt oben */
}

.boxBEATS {
  top: 200px;
  left: 100px;
  z-index: 3; /* Diese Box liegt ganz oben */
}

.boxTOO {
  top: 450px;
  left: 350px;
  z-index: 4; /* Diese Box liegt ganz oben */
}




h1 {
  color: white;
  margin-top: 1rem;
  font-size: 2000%;
  animation: jackson 0.6s infinite alternate;
  animation-timing-function: ease-in-out;
}

h2 {
  color: black;
  margin-top: 1rem;
  font-size: 2500%;
  animation: jackson 0.3s infinite alternate;
  animation-timing-function: ease-in-out;
}

@keyframes jackson {
  from { font-variation-settings: 'wght' 100, 'ital' 0 }
  to { font-variation-settings: 'wght' 900, 'ital' 12 }
}