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


body {
  background-color: black;
  height: 90vh;
  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;
}


.text:nth-child(1) {
  top: -30px;
  left: -200px;
  color: white;
  font-size: 300%;
  animation: vibra 0.5s linear infinite;
}

.text:nth-child(2) {
  top: -10px;
  left: 200px;
  color: rgb(105, 195, 230);
  font-size: 300%;
  animation: vibra 1s linear infinite;
  animation-timing-function: ease-in-out;
}

.text:nth-child(3) {
  top: 0;
  left: 0;
  color: white;
  font-size: 300%;
  animation: vibra 2s linear infinite;
  animation-timing-function: ease-in-out;
}

.text:nth-child(4) {
  top: 30px;
  left: 100px;
  color: rgb(105, 195, 230);
  font-size: 300%;
  animation: vibra 1.5s linear infinite;
  animation-timing-function: ease-in-out;
}

@keyframes vibra {
  from { font-variation-settings: 'wdth' 50 }
  to { font-variation-settings: 'wdth' 500 }
}