/* 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: Verdana;
}
h1 {
  color: orange;
  text-shadow: 2px 2px red;
  text-align: center;
}
h2 {
  color: orange;
  text-shadow: 2px 2px red;
}
p[class="description"] {
  color: orange;
  text-shadow: 1px 1px red;
  font-size: 20px;
}
img {
  padding-left: 16px;
}
a {
  text-decoration: none;
  color: orange;
  text-shadow: 1px 1px red;
  text-decoration: underline;
}