/* 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: yellow;
  font-family: OCR A Std, monospace;
}
a,
a:link {
 color: white; 
}
a:visited {
  color: yellow;
}
a:hover {
  color: orange;
}
a:active {
  color:black;
}
a:any-link {
  text-decoration-line: none;
}
p {
  line-height: 2.2;
}
p {
  margin-top: 100px;    /* space above */
  margin-right: 300px;  /* space to the right */
  margin-bottom: 20px; /* space below */
  margin-left: 300px;    /* space to the left */
}
img {
  display: block;
  margin: 0 auto;
}