section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.game-container {
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 16px;
  cursor: pointer;
}

.game-container img {
  width: 500px;
  max-height: 225px;
  object-fit: cover;
}

.no-image {
  height: 225px;
  width: 500px;
  border: solid 1px red;
  display: flex;
  justify-content: center;
  align-items: center;
}

.game-container img:hover,
.no-image:hover {
  filter: brightness(50%);
}

a {
  color: white;
  text-align: center;
}

.index-platforms-container {
  width: inherit;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 4px;
  margin-bottom: 4px;
}

.platform-name {
  margin-right: auto;
}

.platform-name:hover,
.profile-anchor:hover {
  text-decoration: underline;
}

.index-platforms-container img {
  width: 50px;
  object-fit: contain;
  mix-blend-mode: difference;
  margin-left: auto;
}

.index-platforms-container img:hover {
  background-color: gray;
  border-radius: 8px;
}

.added-by,
.profile-anchor {
  margin-top: 0;
  font-size: 16px;
}