/* *insert vaguely sexual joke about stealing my code here* */

@import url('https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&display=swap');

body {
  background-image: url('images/holy shit lol.gif');
  color: crimson;
  font-family: 'UnifrakturCook', cursive;
  text-align: center;
  text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black
}

.scroll {
  background-repeat: repeat;
  background-attachment: fixed;
  background-size: normal;
  -webkit-animation: fuck 15s linear infinite;
  -webkit-animation-fill-mode: forwards;
  -moz-animation: fuck 15s linear infinite;
  -moz-animation-fill-mode: forwards;
  animation: fuck 15s linear infinite;
  animation-fill-mode: forwards;
}
      
  @-webkit-keyframes fuck {
    from {background-position: 0 0;}
    to {background-position: 400px 400px;}
}
      
  @keyframes fuck {
    from {background-position: 0 0;}
    to {background-position: 400px 400px;}
}

a {
  color: firebrick;
}