/* 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: black;
  color: white;
  font-family: Courier;
  text-align: center;
}
h1 {
    text-shadow: 0px 0px 8px blue;
    font-size: 36px;
}

h2 {
    text-shadow: 0px 0px 8px red;
    font-size: 36px;
}

h3 {
    text-shadow: 0px 0px 8px green;
    font-size: 36px;
}

h4 {
    text-shadow: 0px 0px 8px blue;
    font-size: 20px;
}

h5 {
    text-shadow: 0px 0px 8px red;
    font-size: 20px;
}

h6 {
    text-shadow: 0px 0px 8px green;
    font-size: 20px;
}