/* styles for Archie's website */
/* written by Archie (Archieee) */

/* background color */
  body {
    background-color: black;
  }

/* titles and stuff */
h1 {
  color: pink;
}

/* subheadings */
h2 {
  color: red;
}

/* bulleted lists */
ul,li {
  color: hotpink;
}

/* important text (strong tag) */
strong {
  color: hotpink;
}

/* paragraphs */
p {
  color: hotpink;
}
