: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;
}

h1 {
  font-weight: 400;
}

.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: headbanger 0.25s infinite alternate;
  animation-delay: 0.15s;
}

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

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

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

.text:nth-child(5) {
  top: 0;
  left: 600px;
  scale: 6;
  animation: headbangerOVAL 0.25s infinite alternate;
  animation-delay: 0.1s;
}

.text:nth-child(6) {
  top: 0;
  left: 250px;
  scale: 6;
  animation: headbangerOVAL 0.25s infinite alternate;
  animation-delay: 0.1s;
}

.text:nth-child(7) {
  top: 0;
  left: -300px;
  scale: 6;
  animation: headbangerOVAL 0.25s infinite alternate;
}

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

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