/* 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: #451e26;
  color: #f58d7a;
  font-family: Verdana;
}

.container {
  width: 70%; /* Sets the width of the container */
  margin: auto; /* Centers the container horizontally */
  border: 2px solid black; /* Adds a visible border for demonstration */
  padding: 10px; /* Adds space inside the border */
  background-color:#ffeeeb ;
}

.image-container {
    /* 1. Set the background image and its path */
    background-image: url("https://i.postimg.cc/j2gmvgjQ/Unknown.gif");
  
    /* This is crucial, as containers are often 0 height without content */
    height: 400px; /* Example height; adjust as needed */
    width: 45%;
    border:2px solid black;
    padding:9px;
    /* 3. Control image display and size (optional but recommended) */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-size: cover;       /* Scales the image to cover the entire container */
    background-position: center;  /* Centers the image within the container */
    background-color: #ffeeeb;

}

image-container p1, .image-container {
    text-align: center;
}