body {
    background-color: #93C572;
    font-family: sans-serif;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

header {
  text-align: center;
  padding: 20px;
  background-color: 	#93C572	; /* Lighter blue for header */
}

main {
  text-align: center;
  padding: 5px;
}

section {
    background-color: #ECFFDC;
    padding: 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.thumbnails img {
  width: 250px; /* Adjusted width for better mobile scaling */
  height: auto;
}



h1 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    margin-bottom: 20px;
}
h3 {
  text-align: center;
  font-size: 3rem; /* Adjust the font size as needed */
  opacity: 0.5; /* Set the opacity to 50% */
  margin-bottom: 20px;
}

button {
    background-color: #FFFAA0;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
}

@media only screen and (max-width: 768px) {

  /* Adjust layout for smaller screens */
  .thumbnails img {
    width: 100%; /* Images take full width on mobile */
  }

  .buttons {
    flex-direction: column; /* Buttons stack vertically on mobile */
  }

  h1,
  h2 {
    font-size: 1.5em; /* Adjust heading size for mobile */
  }

  section {
    padding: 15px; /* Reduce section padding on mobile */
  }
}

/* Media Queries for Optional Tablet Optimization (768px to 1024px) */

@media only screen and (min-width: 768px) and (max-width: 1024px) {

  /* Adjustments for tablets (optional) */
  .thumbnails img {
    width: 75%; /* Adjust image width for tablets */
  }

  button {
    font-size: 16px; /* Increase button font size for tablets */
  }

  section {
    padding: 20px; /* Adjust section padding for tablets */
  }
}

/* Desktop Styles (applied for screens wider than 1024px) */

@media only screen and (min-width: 1024px) {

  /* Adjustments for desktops (optional) */
  h1,
  h2 {
    font-size: 2em; /* Increase heading size for desktops */
  }

  section {
    padding: 30px; /* Increase section padding for desktops */
  }

  /* Add any other desktop-specific styles here */
}