/* 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: fuchsia;
  color: fuchsia;
  font-family: Verdana;
}

div {
  background-color: black; /* Black BG color*/
  border: 2px solid gray;  /* Solid Gray Border*/
  padding: 20px;           /* Space between tet and border*/
  margin: 15px auto;       /* Space around the box, 'auto' centers it horizontally*/
  width: 1000px;              /* Box width*/
  height: 80%;
  overflow: auto;          /* Adds scrollbar if content overflows*/
}