/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
html {
  cursor: url("https://permafrostdrifter.neocities.org/Images/arrow.cur"), auto;
}


body {
  background: white 
  url(https://permafrostdrifter.neocities.org/Images/FDC_BG.png) no-repeat top;
  animation: moveIt 1s linear infinite;
  animation-direction: reverse;
  color: black;
  font-family: "Courier-New", Courier;
}

@keyframes moveIt {
  0% {background-position: center top 200px;}
  50% {background-position: center top 202px;}
  100% {background-position: center top 200px;}
}

.JERRYGOO {
  text-align: center;
}

.flex-container {
  display: flex;
  background-color: white;
}

.JERRYGOO .largetext {
  font-size: 30px;
  font-weight: bold;
}