:root {
  font-size: 800%;
  font-family: "Roboto Flex", sans-serif;
}


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

h1 {
  text-align: center;
  letter-spacing: 0.2rem;
  color: white;
}

.container {
  display: flex;
  flex-direction: column;
}

.WE {
  margin-top: -0.5rem;
  animation: high 0.25s infinite alternate;
}

.BEATS {
  margin-top: -3.5rem;
  animation: high 0.25s infinite alternate;
}

@keyframes high {
  from { font-variation-settings: 'YTUC' 528 }
  to { font-variation-settings: 'YTUC' 760 }
}