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


body {
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  margin-left: 0.7rem;
}

h1 {
  text-align: center;
  letter-spacing: 1.4rem;
}

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

.WE {
  color: white;
  animation: high 0.5s infinite;
}

.BEATS {
  margin-top: -3.3rem;
  color: rgb(105, 195, 230);
  animation: high 0.25s infinite alternate;
}

.WE2 {
  margin-top: -3.3rem;
  color: white;
  animation: high 0.5s infinite;
}

.BEATS2 {
  margin-top: -3.3rem;
  color: rgb(105, 195, 230);
  animation: high 0.25s infinite alternate;
}

@keyframes high {
  from { font-variation-settings: 'YTUC' 528, 'slnt' -10, 'GRAD' -200 }
  to { font-variation-settings: 'YTUC' 760, 'slnt' 0, 'GRAD' 150 }
}