/* 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: #2c2d31; /* original is white, changed color to #636363 to make it easy on the eyes. yes, i like dark mode. */
  color: white;
  font-family: Verdana;
}
a:link {
  color: #0091ff;
  text-decoration: none; 
}
a:visited {
  color: #bd56af;
  text-decoration: none; 
}
a:hover {
  color: #5495ff;
  text-decoration: none; 
}
a:active {
  color: #b5dfff;
  text-decoration: none; 
}
#main { /* "borrowed" from playzholder (c'mon it looks cool) */
    margin: auto;
    margin-top: 24px;
    margin-bottom: 24px;
    width: 888px;
    overflow: auto;
    background-color: #040112;
    border: solid;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
p {
    margin: 24px;
    display: block;
}