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

  .header {
    font-size: 25px;
    color: #850004;
  margin: auto;
  width: 50%;
  padding: 10px;
   text-shadow:
        1px 1px 0px #444, /* First shadow layer */
        2px 2px 0px #555,
        3px 3px 0px #666,
        4px 4px 0px #777,
        5px 5px 0px #888,
        /* Add more layers for greater depth */
        6px 6px 0px #999,
        7px 7px 0px #aaa,
        8px 8px 0px #bbb,
        9px 9px 0px #ccc,
        /* Optional: Add a final, slightly blurred shadow for a more natural look */
        10px 10px 5px rgba(0, 0, 0, 0.5);
}