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


body {
  background-color: black;
  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: white;
  font-size: 1500%;
  letter-spacing: -0.4rem;
  animation: hulk 0.15s infinite alternate;
}

.text:nth-child(2) {
  top: 0;
  left: -50px;
  color: rgb(105, 195, 230);
  font-size: 1500%;
  letter-spacing: -0.4rem;
  animation: hulk 0.2s infinite alternate;
}

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

.text:nth-child(4) {
  top: 0;
  left: 0;
  color: black;
  font-size: 1500%;
  letter-spacing: -0.4rem;
  animation: jackson 0.15s infinite alternate;
}

.text:nth-child(5) {
  top: 0;
  left: 0;
  color: white;
  font-size: 1500%;
  letter-spacing: -0.4rem;
  animation: jackson 0.2s infinite alternate;
}

@keyframes jackson {
  from { font-variation-settings: 'wght' 600 }
  to { font-variation-settings: 'wght' 900 }
}

@keyframes hulk {
  from { font-variation-settings: 'ital' 8 }
  to { font-variation-settings: 'ital' 12 }
}