/* styles.css */

/* Apply animated background to body */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(-45deg, #ffecd2, #fcb69f, #ff9a9e, #fad0c4);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Keyframes for background animation */
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Navbar styling */
/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between; /* logo on the left, nav links on the right */
  align-items: center;
  padding: 15px 30px;
  background-color: #333;
  color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo {
  font-size: 1.6rem;
  font-weight: bold;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

/* Individual links */
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffcc00;
}

/* Responsive: Stack links vertically on small screens */
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
}


/* Centering the message below navbar */
.message-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.message {
  text-align: center;
  font-size: 2rem;
  color: #333;
  padding: 20px 30px;
  border: 2px dashed #999;
  border-radius: 10px;
  background-color: #ffffffcc;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Responsive navbar */
@media (max-width: 600px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
}
