/* Reset and basic setup */
html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  background-color: #e3f2fd; /* Light blue background */
  color: #1565c0; /* Dark blue text */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

/* Header styles */
.header {
  width: 100%;
  background-color: #e3f2fd; /* Matches the light blue background */
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Drop shadow */
  position: fixed; /* Fixed at the top */
  top: 0;
  left: 0;
  z-index: 10; /* Ensures header stays on top */
}

.nav-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1976d2; /* Blue text */
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-link:hover {
  background-color: #bbdefb; /* Light blue hover effect */
  transform: scale(1.05);
}

/* Main container styles */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  margin-top: 80px; /* Adds space below the fixed header */
}

/* Title styles */
.title {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 4rem;
  color: #1565c0; /* Dark blue for the title */
  margin: 0;
}

/* Text styles */
.text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  color: #1976d2; /* Medium blue for the description */
  margin: 20px 0;
}

/* Link box styles */
.link-box {
  background-color: #bbdefb; /* Light blue for the link box */
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  padding: 20px 40px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.link-box p {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: #0d47a1; /* Darker blue for the link text */
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}
