:root {
  font-family: 'Ruder Plakat', sans-serif;
}

body {
  background-color: black; 

  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-auto-rows: minmax(1px, auto);
  /* grid-template-rows: repeat(2, 450px) */
  grid-row-gap: 5px; 
  
  justify-content: center;
  align-content: center;
  align-items: end;
}

.pola, .roid {
  display: inline-block;
  transform: rotate(-30deg);
}

.letter{
  font-size: 700px;
  color: white;
}

.animation{
  font-size: 700px;
  line-height: 0.1;
  color: white;
  animation: YTUC 4s linear infinite alternate; 
}

@keyframes YTUC {
  from {font-variation-settings: "YTUC" 100; }
  to {font-variation-settings: "YTUC" 650;}
}