html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: black;
  color: white;
  display: flex;
  flex-direction: column;
}

*:focus {
  outline: none;
}

footer {
  padding: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
  color: white;
  text-decoration: none;
}

.content {
  text-align: center;
  flex: 1 0 auto;
  padding: 10px;
}

.shadow {
  position: fixed;
  justify-content: center;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: rgb(31 31 31 / 89%);
  display: none;
}

.gameList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  font-weight: bold;
  margin: 0 auto;
  max-width: 80%;
  gap: 24px;
  padding: 10px;
}

.gameList a {
  text-decoration: none;
}

.gameList img {
  max-width: 220px;
}

.gameContainer {
  display: flex;
  flex-direction: column;
  text-align: center;
  max-width: min-content;
  gap: 10px;
  padding: 10px;
  font-size: 20px;
  border-radius: 25px;
  background-color: #262626;
  color: #fff;
  box-shadow: 0 0 10px 1px #686868;
}

.img-container {
  position: relative;
  overflow: hidden;
  width: 220px;
  height: 123.75px;
  max-width: 220px;
  border-radius: 20px;
  object-fit: cover;
  background-color: #404040;
}

.banner {
  position: absolute;
  right: -32px;
  top: 21px;
  background-color: red;
  color: white;
  padding: 0px 28px;
  font-weight: bold;
  transform: rotate(45deg);
  white-space: nowrap;
}
