@font-face {
    font-family: 'PixelifySans';
    src: url('../fonts/PixelifySans-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900; /* Variable Font Spannweite */
    font-display: swap;
  }
  
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html, body {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: black;
    font-family: 'PixelifySans', sans-serif;
  }
  
  .bg {
    position: fixed;
    width: 300%;
    height: 300%;
    top: -100%;
    left: -100%;
    background: url('../assets/mwww-background.jpg') no-repeat;
    background-size: cover;
    animation: moveBg 60s ease-in-out infinite alternate;
    z-index: 0;
    opacity: .8;
  }
  
  @keyframes moveBg {
    0%   { transform: translate(0%, 0%); }
    100% { transform: translate(-33%, -33%); }
  }
  
  .viewport {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
  }
  
  .text-row {
    flex: 1;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
  }
  
  .text-row .content {
    display: inline-block;
    font-family: 'PixelifySans', sans-serif;
    font-weight: 700;
    color: #F2F48E;
    white-space: nowrap;
    font-size: 22vh;
    line-height: 1;
    animation: scroll-left 320s linear infinite;
  }
  
  .text-row.reverse .content {
    animation-name: scroll-right;
  }
  
  @keyframes scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  
  @keyframes scroll-right {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
  }
  