/* 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: Georgia, serif;
  text-align:center;
}

a:link {
  color: white;
}

a:visited {
  color: white;
}

a:hover {
  color: rgb(255, 0, 153);
}

a:active {
  color: aqua;
}

#center {
  margin-left: auto;
  margin-right: auto;
}


#title {
  font-size: 20px;
}
#navigation {
  background-color: black;
  border:2px white;
  word-spacing: 30px;
}
#border {
  color: black;
}
#maggiebox {
  background-color: rgb 171, 0, 85;
  color: rgb 171, 0, 85;
  border: 3px solid black;
}
#authorbox {
  background-color:black;
  color:white;
  border:3px dashed white;
  margin-left: 15%;
  margin-right: 15%
}

#author1 {
  border: 2px white;
  border-style: outset;
}
  