:root {
  font-size: 60%;
  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;
}


.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;
  animation: movimentoOVAL 1s infinite alternate;
}


.text:nth-child(2) {
  top: 0;
  left: 0;
  color: white;
  font-size: 400%;
  animation: movimentoWE 0.4s linear infinite, jackson 4s infinite alternate;
}

.text:nth-child(3) {
  top: 0;
  left: 0;
  color: white;
  font-size: 600%;
  animation: movimentoWE 1s linear infinite, jackson 4s infinite alternate;
}

.text:nth-child(4) {
  top: 0;
  left: 0;
  color: white;
  font-size: 1200%;
  animation: movimentoWE 0.2s linear infinite, jackson 2s infinite alternate;
}

.text:nth-child(5) {
  top: 0;
  left: 0;
  color: white;
  font-size: 1000%;
  animation: movimentoWE 0.2s linear infinite, jackson 4s infinite alternate;
}

@keyframes movimentoWE {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@keyframes movimentoOVAL {
  from { transform: scale(30); }
  to { transform: scale(20) }
}