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


body {
  background-color: black;
  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: rgb(105, 195, 230);
}

.WE {
  font-size: 600%;
  font-variation-settings: 'wght' 100;
  animation: movimentoWE 0.2s linear infinite;
}

.LOVE {
  font-size: 900%;
  font-variation-settings: 'wght' 400;
  animation: movimentoWE 0.8s linear infinite;
}

.BEATS {
  font-size: 1200%;
  font-variation-settings: 'wght' 100;
  animation: movimentoWE 0.4s linear infinite;
}

.TOO {
  font-size: 600%;
  font-variation-settings: 'wght' 900;
  animation: movimentoWE 0.6s linear infinite;
}

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