/* 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: green;
  font-family: Old English Text MT;
   margin: 0 auto;   /* Centers the container horizontally */
  text-align: center;

    img {
  display: block; /* Make the image a block-level element */
  margin-left: auto; /* Distribute available left space automatically */
  margin-right: auto; /* Distribute available right space automatically */
  /* Optional: Ensure responsiveness */
  max-width: 100%; 
  height: auto
}