/* 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: #161616; /* Dark gray background */
  color: #f5f5dc; /* Beige font color */
  margin: 0; /* Removes default margin */
  font-family: Arial, sans-serif; /* Optional: Sets a clean font */
}

img {
  max-width: 50%; /* Shrinks the image to 50% of the container width */
  height: auto; /* Maintains aspect ratio */
  display: block;
  margin: 0 auto;
}