*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  background: #eaeaea;
}

.container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 48px);
}

.games-container {
  width: 100%;
  max-width: 1080px;
  height: 100%;
  padding: 10px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 300px));
  grid-gap: 35px;
  grid-auto-rows: minmax(350px, auto);
}

.game-card {
  text-decoration: none;
  color: #000;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: cubic-bezier(0.075, 0.82, 0.165, 1) 0.6s;
}

.game-card:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  transform: translate(0, -5px);
}

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-card-info {
  padding: 15px;
  text-align: center;
}
.game-card-info h3 {
  padding-bottom: 10px;
}

footer {
  width: 100%;
  height: 48px;
  background-color: #000;
  padding: 10px;
  box-sizing: border-box;
  color: #fff;
  text-align: center;
}
