/* 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: white;
  color: black;
  font-family: Verdana;  
}

.background-image {
  /* Set the background image */
  background-image: url("67.png");

  /* Center the image on the page */
  background-position: center;

  /* Do not repeat the image */
  background-repeat: no-repeat;

  /* Scale the image to cover the entire container (the viewport) */
  background-size: cover;

  /* Optional: keeps the background fixed while the page content scrolls */
  background-attachment: fixed;
  
  color: white;
}
