body {
  font-family: Monaco, monospace;
background-color: 	#A7C7E7;
margin: 0;
  padding: 0;
}

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





.thumbnails img {
    width: 290px; /* Adjust width as needed */
    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 {
  text-align: center;
  margin: 0;

}


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

section {
  text-align: center;

  padding: 20px;
  
  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;
}

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

a:hover {
  text-decoration: underline;
}

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





#toggleButton {
  background-color: #333;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.5s ease-in-out;
}

/* Apply styles based on the body's data-theme attribute */
[data-theme="dark"] {
  background-color: #222;
  color: white;
}

[data-theme="dark"] #toggleButton {
  background-color: #ddd;
  color: black;
}



