/* General Reset */
body, h1, h2, p, ul, li, a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #121212; /* Dark background for dark mode */
  color: #e0e0e0; /* Light text color for contrast */
  margin: 0;
  padding: 0;
}

/* Header Styling */
header {
  background: #ff6f00; /* Deep orange for the header background */
  color: white;
  text-align: center;
  padding: 40px 20px;
  text-shadow: 2px 2px 5px rgba(255, 111, 0, 0.5); /* Subtle orange glow */
}

header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 2px;
}

header p {
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 1px;
}

/* Navigation Bar Styling */
.navbar {
  display: flex;
  justify-content: center;
  background: #333333; /* Dark background for the navbar */
  padding: 15px 0;
  list-style: none;
}

.navbar li {
  margin: 0 20px;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  padding: 10px 20px;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.navbar a:hover {
  background: #ff6f00; /* Orange hover effect */
  color: #fff;
  border-color: #ff6f00; /* Orange border on hover */
  text-shadow: 0 0 5px #ff6f00, 0 0 10px #ff6f00; /* Glow effect */
}

/* Main Container Styling */
.container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 30px;
  background: #1c1c1c; /* Slightly lighter dark background for the container */
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
  text-align: center;
  border: 1px solid #ff6f00; /* Orange border around container */
}

.container h2 {
  font-size: 2.5rem;
  color: #ff6f00; /* Orange heading color */
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(255, 111, 0, 0.5); /* Glowing orange text */
}

.container p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #bbb; /* Light gray text for better readability */
}

/* Footer Styling */
footer {
  text-align: center;
  padding: 20px 0;
  background: #333333; /* Dark footer background */
  color: white;
  margin-top: 40px;
  font-size: 1rem;
  border-top: 1px solid #ff6f00; /* Orange border to match header */
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  header h1 {
    font-size: 2.2rem;
  }
  header p {
    font-size: 1rem;
  }
  .navbar li {
    margin: 0 10px;
  }
  .container {
    padding: 20px;
  }
}
