main {
  display: flex;
  justify-content: left;
  align-items: center;
}

.games-container {
  display: flex;
  margin-top: 10px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.game-image-container {
  width: 150px;
  height: 200px;
  margin: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.05);
  box-shadow: rgb(0, 0, 0) 3px 3px 3px 3px;
}

.game-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.index-nav {
  background: linear-gradient(90deg, white 0%, rgba(0,212,255,1) 35%, rgb(17, 17, 182) 100%); 
  display: flex;
  justify-content: left;
  margin: 0;
  height: 35px;
  border-bottom: black 3px solid;
  font-size: 20px;
  text-decoration: none;
}

.index-nav a {
  text-decoration: none;
  margin: 4.5px 15px 0 15px;
  color: rgb(0, 0, 0);
  font-family: 'Hammersmith One', sans-serif;  
  font-weight: 600;
}

.index-nav a:hover {
  color: #ff0000;
}

.game-image-container:hover {
  box-shadow: rgb(184, 0, 0) 3px 3px 3px 3px;
}