/* 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;
  background-image: url("stars 2.gif");
  background-repeat: repeat;
  color: white;
  font-family: Verdana;
  margin: 0;
  text-align: center;
}

.intro-box {
  box-sizing: border-box;
  width: min(700px, 90%);
  margin: 2rem auto;
  padding: 1.5rem 2rem;
  border: 3px solid plum;
  background-color: black;
  text-align: left;
}

.intro-box h2 {
  margin-top: 0;
  color: white;
}

.intro-box p {
  margin-bottom: 0;
}

.link-box {
  box-sizing: border-box;
  width: min(700px, 90%);
  margin: 2rem auto;
  padding: 1.5rem 2rem;
  border: 3px solid plum;
  background-color: black;
  text-align: left;
}

.link-box h2 {
  margin-top: 0;
  color: white;
}

.link-box p {
  margin-bottom: 0;
}

/* unvisited link */
a:link {
  color: rgb(222, 0, 255);
}

/* visited link */
a:visited {
  color: rgb(255, 0, 205);
}

/* mouse over link */
a:hover {
  color: rgb(255, 110, 227);
}

/* selected link */
a:active {
  color: rgb(255, 201, 245);
}