/* 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: darkblue;
  font-family: ariel;
}
.shadowed-text {
      color: purple; /* The color of the main text */
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Horizontal offset, Vertical offset, Blur radius, Color (with opacity) */
    }