:root {
  font-family: 'Roboto Flex', sans-serif;
}

body {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 40px; 
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: black;
  margin: 0;
}

.text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 100px;
  line-height: 1.2;
  color: white;
}


.letter {
  display: block;
  text-align: center;
  color: white;
  transform: rotate(30deg);
  animation: wgt 2s infinite alternate; 
}


@keyframes wgt {
  0% {
    transform: transform: rotate(deg); scale: 2; font-variation-settings: 'wght' 25;}
  100% {
    transform: transform: rotate(-30deg); scale: 2; font-variation-settings: 'wght' 100;}
}