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

body {
  background-color: #001a4d;
  color: black;
  font-family: "Comic Relief", sans-serif, system-ui;
}

h1, h2, h3, h4, h5, h6{
    text-align:center;
}
p {
    font-size:20px;
}

.spraypaint-reg {
  font-family: "Rubik Spray Paint", system-ui;
  font-weight: 400;
  font-size:50px;
  font-style: normal;
}

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

.bitcount-font{
  font-family: "Bitcount Prop Double Ink", system-ui;
  font-weight: 100;
  font-style: normal;
}

.pixel-dotgothic {
  font-family: "DotGothic16", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.comic-relief-reg {
  font-family: "Comic Relief", system-ui;
  font-weight: 400;
  font-style: normal;
}

.comic-relief-bold {
  font-family: "Comic Relief", system-ui;
  font-weight: 700;
  font-style: normal;
}

.white-bkgrd {
    background-color:white;
}





