:root {
  font-family: 'Bandeins', 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-top: 600px;
}

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


.letter {
  display: block; 
  color: white;
  animation: wdth 1s infinite alternate;
}

.letterret {
  display: block; /
  color: white;
  animation: wdthret 1s infinite alternate; animation-delay: 0.5s;
}


@keyframes wdth {
  0% {
    transform:rotate(360deg); font-variation-settings: 'wght' 300;}
  
    100% {
    transform: scale: 2; font-variation-settings: 'wght' 700;}
}

@keyframes wdthret {
  0% {
    transform:rotate(-360deg); font-variation-settings: 'wght' 700;}
  
    100% {
    transform: scale: 2; font-variation-settings: 'wght' 300;}
}

