/* Base Styles for Dark Mode */
body {
  font-family: 'Arial', sans-serif;
  background-color: #121212; /* Dark background */
  color: #e0e0e0; /* Light text for contrast */
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start; /* Align content to the top */
  align-items: center; /* Horizontally center the container */
  min-height: 100vh; /* Minimum height of the page */
  flex-direction: column; /* Stack content vertically */
  text-align: center;
}

.container {
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  padding: 30px;
  max-width: 90%; /* Set the max width to 90% of the viewport width */
  width: 100%; /* Allow it to take full width within the max-width */
  border-radius: 12px;
  backdrop-filter: blur(10px); /* Glass-like effect */
  margin: 50px 5%; /* Added 50px margin for artificial top/bottom padding */
}

/* Optional: Adjusting padding and margins on smaller screens */
@media (max-width: 600px) {
  .container {
    padding: 20px;
    margin: 50px 10px; /* Adjust margin for smaller devices */
  }
}

h1 {
  font-size: 2.5em;
  color: #fff; /* White text for the heading */
  margin-bottom: 20px;
  font-weight: 700;
}

.discovery-list {
  list-style: none;
  padding: 0;
}

.discovery-item {
  background-color: rgba(
    255,
    255,
    255,
    0.1
  ); /* Slightly transparent white blocks */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Light border for separation */
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow */
  transition: background-color 0.3s, transform 0.3s;
}

.discovery-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}

.discovery-item h2 {
  margin: 0;
  font-size: 1.6em;
  color: #fff; /* White text for titles */
}

.discovery-item p {
  color: #d3d3d3; /* Light gray text for descriptions */
  font-size: 1em;
  line-height: 1.6;
}

.footer {
  margin-top: 30px;
  font-size: 1em;
  color: #aaa; /* Slightly muted color for the footer */
}

/* Make the anchor tag fill the entire item */
a {
  text-decoration: none;
  color: inherit; /* Inherit color from the .discovery-item */
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.8em;
  }

  .discovery-item h2 {
    font-size: 1.3em;
  }

  .discovery-item p {
    font-size: 0.95em;
  }
}
.content-image {
  max-width: 100%; /* Makes the image responsive; it won't overflow its container */
  height: auto; /* Maintains the image's aspect ratio */
  border-radius: 8px; /* Matches the rounded corners of your other elements */
  margin-top: 15px; /* Adds some space above the image */
  margin-bottom: 15px; /* Adds some space below the image */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Optional: Adds a light border like your .discovery-item */
}
