:root {
  --backgroundSize: 320px;
}

@keyframes movingBackground{
  from {background-position: 0 0;}
  to {background-position: var(--backgroundSize) var(--backgroundSize)}
}

  
  body {
    animation: bg-scrolling-reverse 10s infinite;
    animation-timing-function: linear;
    background: url(Assets/webbackground.png);
    background-size: var(--backgroundSize);
    animation: movingBackground 10s linear infinite;
    cursor: url(Assets/mario-64-2020/Mario\ 64\ Normal\ Select.cur)default;
  }
  
  @font-face
{
    font-family: 'RetroGaming';
    src: url(Assets/RetroGaming.ttf);
}

p{
  font-family: 'RetroGaming';
  font-size: 100px;
  text-align: center;
}

img{
  display: block;
  margin-left: auto;
  margin-right: auto;
}