:root {
  font-family: 'MNO'; /* Dieser Name korrespondiert mit den Einstellungen in fonts.css */
  color: #FFC5F4;
}

body{
  background:#1D1D1D;
  overflow: hidden;
  /* push down the wrapper by half the page */
  margin: 50% 0 0 0;
  position: relative;
}

.wrapper {
  display: flex;
  height: 100%;
  width: 60%;
  margin: 0 auto;
}

.scroll-text {
  font-size: 3vw;
  line-height: 0.5em;
  font-weight: 900;
  text-align: justify;
  position: relative;
  animation: scroll 30s linear forwards;
}

h1, h2 {
  text-align: center;
}

@keyframes scroll {
  from { top: 0;}
  to {top: -5500px}
}