: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: 1400%;
  animation: jackson 0.3s infinite alternate, headbanger 0.25s infinite alternate, bigger 0.5s infinite;
}

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

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

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

.text:nth-child(5) {
  top: 0;
  left: 0;
  color: black;
  font-size: 1400%;
}

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

@keyframes headbanger {
  from { transform: translate(0px, -200px); }
  to { transform: translate(0px, 200px); }
}

@keyframes bigger {
  from { transform: scale(10); }
  to { transform: scale(100); }
}