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


body {
  background-color: white;
  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: 0;
  left: 0;
  color: rgb(105, 195, 230);
  font-size: 5000%;
  letter-spacing: -1rem;
  animation: jackson 0.4s infinite alternate;
}

.text:nth-child(2) {
  top: 0;
  left: 0;
  color: rgb(105, 195, 230);
  font-size: 2400%;
  letter-spacing: -1rem;
  animation: jackson 0.3s infinite alternate;
}

.text:nth-child(3) {
  top: 0;
  left: 0;
  color: white;
  font-size: 3400%;
  letter-spacing: -1rem;
  animation: jackson 0.3s infinite alternate;
}

.text:nth-child(4) {
  top: 0;
  left: 0;
  scale: 40;
}

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