: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 3s infinite alternate;
}

.letterret {
  display: block;
  color: white;
  animation: wdthret 3s infinite alternate; 
}


@keyframes wdth {
  0% {
    transform:rotate(0deg) scale(1); font-variation-settings: 'wght' 300;}
  
    100% {
    transform: translateY(-1300px) scale(1.5); font-variation-settings: 'wght' 700;}
}

@keyframes wdthret {
  0% {
    transform:rotate(0deg) scale(1.5); font-variation-settings: 'wght' 700;}
  
    100% {
      transform: translateY(1300px) scale(1); font-variation-settings: 'wght' 300;}
}


