/* Base styles */
body {
  font-family: "Source Code Pro", monospace; /* Original font */
  background-color: 		#93C572; /* Light blue background */
  margin: 0;
  padding: 0;
}

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



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



/* Buttons */
.buttons {
  display: flex;
  justify-content: space-around;
  margin-top: 20px;
}

button {
  text-align: center;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  background-color: #FFFAA0; /* Soft pink for buttons */
  color: #333; /* Dark text for buttons */
}

/* Headings */
h1,
h2 {
  text-align: center;
  margin: 0;
  color: #333; /* Dark text for headings */
}

/* Main content */
main {
  text-align: center;
  padding: 5px;
}

/* Sections */
section {
  text-align: center;
  padding: 20px;
  margin-bottom: 5px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    background-color: 	#ECFFDC;
}

/* Parallax effect (optional, remove if not needed) */
.parallax {
  animation: parallax 10s ease-in-out infinite alternate;
}

@keyframes parallax {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-50px);
  }
}

/* Unordered list */
ul {
  text-align: center;
  list-style: none;
  padding: 0;
}

li {
  margin-bottom: 10px;
}

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

/* Links */
a {
  color: #333; /* Dark text for links */
  text-decoration: none; /* Remove underlining by default */
}

/* Logo container */
.logo-container {
  text-align: center; /* Center the logo horizontally */
  margin-bottom: 10px; /* Add some space below the logo */
}



/* Media Queries for Mobile and Tablet Optimization */

@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 */
}
