/* 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: white;
  color: black;
  font-family: Century;
 
}
 .comicPage img {
    width: 800px;
    max-width: 100%;
  }
  .image-container {
  display: flex; /* Makes children line up horizontally */
  gap: 10px;     /* Space between images */
  justify-content: center; /* Centers images in container */
  align-items: center; /* Vertically centers images */
  
}
.container {
  display: flex;
  justify-content: center; /* Horizontal centering */
  align-items: center;     /* Vertical centering */
  height: 100vh;           /* Optional: fills the whole screen */
}
