*{box-sizing: border-box;}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

.image-container {
  text-align: center;
  margin: 20px;
}

/* Ensures images scale down proportionally while maintaining aspect ratio */
img {
  max-width: 500px; /* Adjust this value if needed */
  height: auto;
}

.navigation {
  text-align: center;
}

.navigation button {
  background: linear-gradient(to right, #ff6600, #ffcc00); /* Adjust colors as needed */
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.navigation button:hover {
  background: linear-gradient(to right, #ff9900, #ffcc00);
  border: 1px solid black;
}

.end-message {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #ff6600;
    margin-top: 20px;
  }
  

  

/* Media Queries for Mobile Responsiveness (Existing) */

@media screen and (max-width: 768px) {
  .image-container {
    margin: 10px;
  }

  .navigation button {
    padding: 8px 16px;
    font-size: 16px;
  }

  img {
    max-width: 100%; /* Adjust this value if needed */
    height: auto;
  }
}