.games-heading {
  margin: 40px auto;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
}

.games {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  gap: 1rem;
  padding-left: 0;
}

.game-tile {
  max-width: 300px;
  border: gray 1px solid;
  padding: 0.5rem;
  position: relative;
  display: flex;
  justify-items: center;
  border-radius: 8px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  gap: 1rem;
  background-color: white;
}

.game-tile img {
  object-fit: cover;
  width: 100%;
  max-width: 50px;
  flex: 1;
  border-radius: 8px;
}

.game-tile a {
  flex: 1;
  display: flex;
  justify-items: center;
  align-items: center;

}

.game-tile a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.doge-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 40px;
  text-wrap: nowrap;
  font-size: 1rem;
  border: 1px solid gray;
  border-radius: 8px;
  padding: 0.5rem;
}