:root {
  font-size: 120%;
  font-family: 'Antarctica Trial';
}
body {
  height: 100vh;
  display: block;
  justify-items: center;
  align-content: center;
  overflow: hidden;
  margin-top: -5.8rem; 
  background-color: black;
}
h1{
  color: white;
  font-variation-settings: 'wdth' 100,'wght' 600;
  font-size: 16.1rem;
  line-height: 0.73;
  margin: 0;
}
#Moma2 {
  margin-top: -11.7rem;
  transform-origin: bottom center;
  animation: spiegelung 6s forwards;
  opacity: 0.8;
}

@keyframes spiegelung {
  0% { 
    transform: scaleY(0); 
    opacity: 0; }
  50% { 
    transform: scaleY(-1);
    opacity: 0.2; }
  100% { 
    transform: scaleY(-1); 
    opacity: 0.8; }
}

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