/* 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-image: url('/backgr.webp');
  /* Optional: further styling to control repetition, size, etc. */
  background-repeat: no-repeat;
  background-size: cover; /* This makes the image cover the entire page */
  background-attachment: fixed; /* Fixes the image so it doesn't scroll with content */
  color: orange;
  font-family: Verdana;
}