:root {
  font-size: 120%;
  font-family: 'Antarctica Trial';
}
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: black;  
}
h1{
  font-family: 'GridlitePEVFTRIAL';
  color: white;
  font-size: 19.5rem;
  font-variation-settings: 'wght' 900, 'BACK' 900, 'RECT' 900, 'ELSH' 4;
  padding: 0;
  margin: 0;
  animation: my-moma 3s forwards alternate;
}
span {
  font-variation-settings: 'wght' 100, 'BACK' 900, 'RECT' 900, 'ELSH' 2;
  animation: my-moma2 3s forwards alternate;

}

@keyframes my-moma {
  0% { 
    font-variation-settings: 'wght' 900, 'BACK' 900, 'RECT' 900, 'ELSH' 4;
  }
  75% { 
    font-variation-settings: 'wght' 900, 'BACK' 900, 'RECT' 900, 'ELSH' 2;
  }
 100% { 
  font-variation-settings: 'wght' 900, 'BACK' 900, 'RECT' 900, 'ELSH' 4;    
  background-color: gold;
  }
}
@keyframes my-moma2 {
  0%  {
    font-variation-settings: 'wght' 100, 'BACK' 900, 'RECT' 900, 'ELSH' 4;
  }
  75% { 
    font-variation-settings: 'wght' 100, 'BACK' 900, 'RECT' 900, 'ELSH' 2;
  }
  100%  { 
    font-variation-settings: 'wght' 100, 'BACK' 900, 'RECT' 900, 'ELSH' 4;
    background-color: gold;
  }
}
div {
  font-size: 1.2rem;
  font-weight: 200;
}
.all {
  position: fixed;
  left: 2vw;
  top: 94vh;
}
.prev {
  position: fixed;
  left: 44vw;
  top: 94vh;
}
.next {
  position: fixed;
  right: 2vw;
  top: 94vh;
}
a {
  color: blue;
  text-decoration: none;
}
a:hover {
  text-decoration: underline 0.1rem;
}