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


body {
  background-color: rgb(105, 195, 230);
  height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 60px;
  height: 60px;
}


.text {
  position: absolute;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /* line-height: 50px; */
}


.text:nth-child(1) {
  top: -300px;
  left: -200px;
  color: white;
  font-size: 1400%;
  animation: jackson 1s infinite alternate, space 0.25s infinite alternate;
}

.text:nth-child(2) {
  top: -200px;
  left: 50px;
  color: white;
  font-size: 1400%;
  animation: jackson 1s infinite alternate, space 0.25s infinite alternate;
}

.text:nth-child(3) {
  top: 0;
  left: 0;
  color: white;
  font-size: 1400%;
  animation: jackson 1s infinite alternate, space 0.25s infinite alternate;
}

.text:nth-child(4) {
  top: 300px;
  left: 200px;
  color: white;
  font-size: 1400%;
  animation: jackson 1s infinite alternate, space 0.25s infinite alternate;
}

  @keyframes jackson {
  0% { font-variation-settings: 'wght' 100, 'ital' 0 }
  20% { font-variation-settings: 'wght' 600, 'ital' 0 }
  40% { font-variation-settings: 'wght' 100, 'ital' 0 }
  60% { font-variation-settings: 'wght' 300, 'ital' 12 }
  80% { font-variation-settings: 'wght' 100, 'ital' 0 }
  100% { font-variation-settings: 'wght' 900, 'ital' 0 }
}

@keyframes space {
  from { letter-spacing: 0rem; }
  to { letter-spacing: 15rem; }
}