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


body {
  background-color: rgb(105, 195, 230);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}

.container {
  display: flex;
  justify-content: space-evenly;
  gap: 5px;
}


h1 {
  /* text-align: center; */
  color: white;
}

.text {
  font-size: 500%;
  font-variation-settings: 'wght' 100;
  animation: movimentotext 0.1s linear infinite, pump 0.8s infinite alternate;
}

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

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