/* 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;
}

/* add this after the head n before main body

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<style>
  body {
    background-color: #f0f8ff; /* Color: AliceBlue */
    background-image: url("my_background_image.jpg"); /* Image: specify the path */
    background-repeat: no-repeat; /* Prevents image tiling */
    background-size: cover; /* Ensures image covers the whole screen */
    background-position: center;
  }
</style>
</head>
<body>

<h1>This is a heading</h1>
<p>This is a paragraph with a background image and color.</p>




</body>
</html>