#game-links {
  margin: 20px 0;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.game-grid img {
  max-width: 100%;
  height: auto;
}

#history-links {
  margin: 20px 0;
}

.history-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.history-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.history-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.history-item img {
  max-width: 70%;
  height: auto;
  display: block;
}

.history-caption {
  margin-top: 10px;
  color: black;
  font-weight: bold;
}