/* 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." */
  
   #container {
        max-width: 60%; /* Or any desired maximum width */
        margin: 0 auto; /* Centers the div horizontally */
        padding: 30px; /* Optional: adds padding inside the container */
        background-color: #36241E; /* Optional: for visual distinction */
    }

    body {
        margin: 0; /* Removes default body margin */
        padding: 0; /* Removes default body padding */
    }