:root {
  font-size: 120%;
  font-family: 'Antarctica Trial';
}
body {
  height: 100vh;
  display: block;
  justify-items: center;
  align-content: center;
  overflow: hidden;
  margin-top: -5rem;
  background-color: black;

}
h1{
  font-family: 'GridlitePEVFTRIAL';
  font-variation-settings: 'wght' 1, 'BACK' 1, 'RECT' 1, 'ELSH' 1;
  color: white;
  font-size: 20rem;
  text-align: center;
  margin: 0;  
}
#Moma1 {
  transform-origin: center top;
  animation: my-moma 2s 0s infinite alternate;
}
#Moma2 {
  transform-origin: center top;
  animation: my-moma 2s 0.5s infinite alternate;
}
#Moma3 {
  transform-origin: center top;
  animation: my-moma 2s 1s infinite alternate;
}
#Moma4 {
  transform-origin: center top;
  animation: my-moma 2s 1.5s infinite alternate;
}
@keyframes my-moma {
  from {
    font-variation-settings: 'wght' 1, 'BACK' 1, 'RECT' 1, 'ELSH' 1;
  }
  to {
    font-variation-settings: 'wght' 1, 'BACK' 900, 'RECT' 900, 'ELSH' 4;
  }
}
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;
}