/* Overall Styles */
body {
  font-family: Monaco, monospace;
  background-color: #A7C7E7;
  margin: 0; /* Remove default margin for better control */
  padding: 0; /* Remove default padding for better control */
}

/* Header */
header {
  text-align: center;
  padding: 20px;
}

/* Navigation (Replace with your actual navigation links) */
nav {
  display: flex; /* Allow horizontal layout for navigation items */
  justify-content: space-around; /* Distribute navigation items evenly */
  padding: 10px 0; /* Add some padding for aesthetics */
  margin-bottom: 20px; /* Create some space between header and content */
}

a {
  color: #000;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Main Content Area */
main {
  padding: 20px; /* Add some padding for content */
}

/* Responsive Layouts */
@media (max-width: 768px) { /* Target screens less than or equal to 768px (typical tablet breakpoint) */
  /* Adjust styles for smaller screens */
  header,
  main,
  section {
    padding: 10px; /* Reduce padding for better use of space */
  }

  .thumbnails img {
    width: 100%; /* Images scale to fit container width */
    height: auto;
  }

.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 10px rgba(0, 0, 0, 0.2);
  background-color: 	#FAA0A0; /* Adjust button color */
}

  h1,
  h2 {
    font-size: 1.5rem; /* Adjust font size for better readability */
  }
}

@media (min-width: 768px) { /* Target screens greater than or equal to 768px (typical desktop breakpoint) */
  /* Adjust styles for larger screens */
  .thumbnails img {
    width: 290px; /* Set desired width for thumbnails on larger screens */
  }

  .buttons {
    justify-content: space-around; /* Maintain horizontal layout for buttons */
  }

  button {
    margin: 0; /* Remove margin for better button arrangement */
  }

  h1,
  h2 {
    font-size: 2rem; /* Adjust font size for better hierarchy */
  }
}

/* Other Styles */
h1,
h2 {
  text-align: center;
  margin: 0;
}

section {
  text-align: center;
  padding: 30px;
  margin-bottom: 5px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.parallax {
  animation: parallax 10s ease-in-out infinite alternate;
}

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

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

li {
  margin-bottom: 10px;
}

footer {
  text-align: center;
  padding: 20px;
  background-color: #A7C7E7;
}

.logo-container {
  text-align: center;
  margin-bottom: 10px;
}
