/* 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: #375373;
  color: white;
  margin: 50px;
  font-family: Georgia, Garamond, "Times New Roman";
}

a {
  color: Khaki;
  font-weight: normal;
}

span.comment {
  background-color:#006600;
  border-radius:8px;
  padding:0px;
}

.separator {
  border-top: 2px solid #ccc; /* Creates a 1px solid gray line at the top */
  width: 100%;               /* Sets the width of the separator */
  margin: 1em 0;             /* Adds space above and below the line */
  height: 0;                 /* Optional: Ensures the div itself has no height */
}

