/* 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 {
  color: #e8d6ca;
  font-family: Helvetica, Verdana, Arial, sans-serif;
  text-align: center;
  background-image: url("background.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  font-size: 24px;
}

#banner {
  width: 1000px;
  height: auto;
}


body a:hover,
body a:focus,
body a:active,
body a:link ,
body a:visited {
  color: #ccb023;
}
#Game {
  width: 450px;
  height: auto; 
}

.navigation-bar {
  display: flex;       /* Activates flexbox layout */
  justify-content: center; /* Centers the images within the container */
}

image-container img {
  width: 33.33333333333%;          /* Sets each image to take up roughly one-third of the container width */
  height: auto;        /* Maintains the image's aspect ratio */
}