/* Shared Styles */
:root {
  /* Text Variables */
  /* Colors */
  --link-color: #5dccfa;
  --text-primary: #ffbf00;
  --color-angel-pants-blue: #2e30a0;
  /* Font Families */
  --font-family-text: arial, sans-serif;
  --font-family-headers-and-stuff: "arial black", sans-serif;
}

/* Tag Overrides */

body {
  color: var(--text-primary);
  font-family: var(--font-family-headers-text);
  text-shadow: 1px 2px black;
  background-image: url("green2.gif");
 




}

h1,
h2,
h3,
h4,
h5,
h6,
a {
  font-family: var(--font-family-headers-and-stuff);
}

p,
span {
  font-family: var(--font-family-text);
}

/* Utility classes */
.shadowy {
  text-shadow: 2px 3px 8px var(--link-color);
}
