body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
  color: #333;
  margin: 0 auto;
  padding: 0;
  max-width: 1200px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  padding: 20px;
  text-align: center;
  display: flex;
  justify-content: space-between;
}

.game {
  width: calc(33.333% - 20px);
  margin: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  color: #333;
  text-decoration: none;
}

.main-content.single-card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
}

.main-content.single-card .game {
  width: 100%;
  max-width: 400px; /* Adjust this value based on your desired card width */
  margin: 10px auto;
}

.game:hover {
  transform: scale(1.03); /* Keeps the slight enlargement effect */
  background-color: #fff9e6; /* Light yellowish color for the background */
  transition: transform 0.2s ease, background-color 0.2s ease; /* Smooth transition for both scaling and background color */
}

.hero img {
  width: 100%;
  height: auto;
}

.responsive-img-drench {
  width: 75%;
  height: auto;
  padding-top: 25px;
}

.responsive-img-2048 {
  width: 45%;
  height: auto;
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #d0d0d0;
  overflow: hidden;
  padding: 0px 20px;
  height: 30px;
}

.footer a {
  float: left;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 14px;
}

.footer a:hover {
  background-color: #ddd;
  color: black;
}

.consent-message {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #f2f2f2;
  padding: 20px;
  text-align: center;
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
}

/* Media query for screens smaller than 768px */
@media screen and (max-width: 768px) {
  .main-content {
    flex-direction: column;
  }
  .game {
    /* padding: 10px; */
    width: 92%;
    max-width: 768px;
  }
}
