:root {
  font-size: 120%;
  font-family: 'Antarctica Trial';
}
body {
  height: 100vh;
  display: block;
  justify-items: center;
  align-content: center;
  overflow: hidden;
  margin: 0;
}
h1{
  color: black;
  font-size: 16.1rem;
  font-variation-settings: 'wdth' 2,'wght' 400;
  letter-spacing: -0.4rem;
  line-height: 0.73;
  margin: 0;
}
#M {
  transform-origin: center center;
  animation: my-o 3s 0s infinite alternate;
}
#o {  
  transform-origin: center center;
  animation: my-o 3s 1s infinite alternate;
}
#A {
  transform-origin: center center;
  animation: my-o 3s 2s infinite alternate;
}

@keyframes my-o {
  from {font-variation-settings: 'wdth' 2,'wght' 400;}
  to {font-variation-settings: 'wdth' 100,'wght' 600;}
}

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;
}