:root {
  font-family: 'WHOA', 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;
  line-height: 0;
  color: white;
}


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

.letterret {
  display: block;
  text-align: center;
  color: white;
  font-size: 200px;
  transform: rotate(30deg);
}