/* 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." */

/* <weight>: Use a value from 400 to 700
/ <uniquifier>: Use a unique and descriptive class name */

.pixelify-sans {
  font-family: "Pixelify Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.jersey-25-regular {
  font-family: "Jersey 25", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.coral-pixels-regular {
  font-family: "Coral Pixels", serif;
  font-weight: 400;
  font-style: normal;
}

.vt323-regular {
  font-family: "VT323", monospace;
  font-weight: 400;
  font-style: normal;
}


h1{
  font-family: "Jersey 25";
}

body {
  background-image: URL('WebsiteBGLOOP.gif');
            background-size: cover;
            background-repeat: repeat;
            background-position: center center;
            height: 100vh;
            margin: 0;
  font-family: VT323;
}

p {
  background: rgb(0 0 200 / 40%);

}