:root {
  font-size: 120%;
  font-family: 'Antarctica Trial';
}
body {
  height: 100vh;
  display: flex;
  justify-items: center;
  align-content: center;
  overflow: hidden;
  margin-top: 0.4rem;
  margin-left: -1.8rem;
}
h1{
  color: black;
  font-size: 18rem;
  font-weight: 400;
  font-variation-settings: 'wdth' 1.4;
  line-height: 0.8;
  margin: auto;
}
#Mo {
  transform-origin: center right;
  animation: my-mo 2s 0s forwards alternate;
}
#MA {
  transform-origin: center left;
  animation: my-mo 2s 1s forwards alternate;
}
@keyframes my-mo {
from { 
  font-variation-settings: 'wdth' 1, 'wght' 400;
  font-size: 18rem;
}
to { 
  font-variation-settings: 'wdth' 13.8, 'wght' 400;
  font-size: 61.8rem;
  letter-spacing: -0.8rem;
  line-height: 0.725;
}
}

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