* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background-color: rgb(26, 26, 26);
}

h1 {
  color: white;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 3rem;
}

.container-overall {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.game-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

.game-container {
  background-color: rgb(40, 40, 40);
  border: 1px solid rgb(60, 60, 60);
  border-radius: 8px;
  padding: 20px;
  width: 300px;
  height: 300px;
  position: relative;
  overflow: hidden;
}
.game-container iframe {
  width: 600px;
  height: 600px;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0.5);
  transform-origin: top left;
  pointer-events: none;
}

.game-container h2 {
  color: white;
  text-align: center;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: 0;
  z-index: 2;
  pointer-events: none;
}

a {
  color: white;
  text-decoration: none;
  transition: color 0.6s;
  font-size: 1.2rem;
}

a:hover {
  text-decoration: underline;
  color: lightgrey;
}
