html, body {
  height: 100%;
  margin: 0;
  background-color: black;
  color: white;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}

* {
  box-sizing: border-box;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
  background-color: black;
  padding-bottom: 50px; /* Add space at the bottom */
}

.main-logo {
  margin-top: 50px; /* Space above the main logo */
  margin-bottom: 50px; /* Space between main logo and first game section */
  max-width: 600px; /* Increase the max-width */
  width: 100%; /* Ensure logo scales responsively */
  height: auto;
}

.game-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; /* Full screen width */
  max-width: 1200px;
  background-color: #1a73e8;
  padding: 20px;
  margin-bottom: 30px; /* Space between games */
  border-radius: 15px; /* Round corners */
  box-sizing: border-box;
}

.game-logo {
  max-width: 100px; /* Adjust the size of the game logo */
  width: 100%;
  height: auto;
}

.text-content {
  flex-grow: 1;
  padding-left: 20px;
}

.title {
  font-size: 36px;
  margin: 0;
  color: white;
}

.description {
  font-size: 18px;
  color: white;
  margin: 5px 0;
}

.download-button {
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background-color: #1a73e8;
  border: 2px solid white;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.download-button:hover {
  background-color: #165aba;
}

/* Media Queries for responsiveness */

@media (max-width: 768px) {
  .game-section {
    flex-direction: column; /* Stack elements vertically on smaller screens */
    align-items: flex-start;
  }

  .game-logo {
    max-width: 150px; /* Increase the size slightly for smaller screens */
    margin-bottom: 10px; /* Add space below the logo */
  }

  .text-content {
    padding-left: 0;
    margin-bottom: 15px; /* Add some spacing between text and button */
  }

  .title {
    font-size: 28px;
  }

  .description {
    font-size: 16px;
  }

  .download-button {
    align-self: flex-end; /* Align button to the right on smaller screens */
  }
}

@media (max-width: 480px) {
  .title {
    font-size: 24px;
  }

  .description {
    font-size: 14px;
  }

  .download-button {
    width: 100%;
    text-align: center;
  }
}
