/* 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: #ffb3de;
  font-family: times;
}
a { color: #ffb3de;}


#container {
    width: 500px; /* Set the fixed width */
    margin: 02 auto; /* Center the container */
    background-color: black; /* background for the content */
    padding: 20px; /* Space inside the container */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Optional shadow for effect */
    
}


