/* 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;
  font-family: Verdana;
  color:white; 
}

.image-container {
  position: absolute;
  display: flex;         /* Enables flexbox layout for the container */
  justify-content: center; /* Horizontally centers the image within the container */
  align-items: center;   /* Vertically centers the image within the container */
  height: 300;         /* Set a specific height for the container */
  top: 35vh; /* Aligns the top edge of the container to the 50vh line */
  left: 8vw; /* Aligns the top edge of the container to the 50vh line */
  text-align: center;
  
}

.image-container img {
  max-width: 80%;       /* Ensures image resizes to fit container width */
  max-height: 100%;      /* Ensures image resizes to fit container height */
  height: auto;          /* Maintains aspect ratio */
  width: auto;           /* Maintains aspect ratio */
  object-fit: contain;   /* Ensures the whole image is visible within the container without stretching */
}
