/* Body styling */
body {
  background-color: #ffffff; /* Light background */
  color: rgb(0, 0, 0); /* Ensuring text color consistency */
  text-shadow:
    0.5px 0.5px 0px #000000,  
    -0.5px -0.5px 0px #000000, 
    0.5px -0.5px 0px #000000,  
    -0.5px 0.5px 0px #000000;  
  font-size: 20px;
  margin: 0; /* Ensure no margin is applied to the body */
}

/* Navbar styling */
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0);
  }
}

.navbar {
  background-color: #1e00ff;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 50% 50%;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
  animation: wave 3s ease-in-out infinite;
}

.navbar .nav-link {
  color: white;
  font-size: 18px;
  margin: 0 15px;
}

.navbar .nav-link:hover {
  color: #ffcc00; /* Yellow on hover */
  text-decoration: underline;
}

/* Header styling */
header {
  height: 80px; /* Adjust header height if needed */
  position: relative;
  top: 0; /* Ensure it's aligned correctly */
  z-index: 999; /* Ensure it's below navbar */
}






