body {
  width: min(1600px, calc(100vw - 2rem));
  margin: auto;
}

.previewImg img {
  width: 100%;
  height: 100%;
}

.games-container {
  display: grid;
  grid-template-columns: repeat(3, 250px);
  gap: 1rem;
  justify-content: space-between;
}

a {
  color: #000;
  text-decoration: none;
}

.card {
  display: grid;
  justify-content: center;
  text-align: center;
  background: #eee;
  border: outset 3px #aaa;
  font-weight: bold;
}

@media screen and (max-width: 900px) {
  .games-container {
    display: block;
  }
}
