.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px; /* space between images */
  padding: 20px;
}

.image-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

img {
  width: 300px;       /* Set your desired width */
  height: 200px;       /* Keeps aspect ratio */
  object-fit: cover;  /* Ensures image fills the space nicely */
  border-radius: 8px; /* Optional: rounded corners */
}

body {
    background-color: black;
}

h1 {
    color: white;
    text-align: center;
    font-size: 5em;
    border: 5px solid whitesmoke;
}

footer {
  text-align: center;
  color: white;
  background-color: black; /* Optional: dark background for contrast */
  padding: 20px;
}

footer a.rangebutton {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 5px;
  display: inline-block;
  margin-bottom: 10px;
}

footer a.rangebutton:hover {
  background-color: white;
  color: black;
}

footer .center-container {
  display: flex;
  justify-content: center;
}
