/* General Body Styles */
body {
  font-family: 'Helvetica', 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* Header Styles */
header {
  display: flex;
  justify-content: space-between; /* Distribute space between header items */
  align-items: center;
  padding: 20px 40px;
  background-color: #fff;
  color: #333;
  border-bottom: 1px solid #e0e0e0;
}

h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 600;
}

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



.fireworks {
  width: 50px;
  margin-left: 15px;
}

/* Navigation Bar Style */

nav {
  display: flex;
  justify-content: flex-end; /* Align the nav links to the right */
  flex-grow: 1; /* Allow the nav to take available space */
}

nav ul {
  list-style-type: none;
  padding: 0;
  margin-top: 15px;
  display: flex;
  gap: 20px;
  justify-content: center;
}

nav ul li {
  font-size: 1.1rem;
}

nav ul li a {
  color: #333;
  text-decoration: none;
  padding: 8px 15px;
  display: inline-block;
  border-radius: 5px;
}

nav ul li a:hover {
  background-color: #f4f4f4;
}

/* Content Section */
section {
  padding: 40px 20px;
  text-align: center;
  background-color: #fafafa;
  margin: 20px auto;
  max-width: 800px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

section h2 {
  font-size: 2rem;
  color: #333;
}

section p {
  font-size: 1.1rem;
  color: #666;
  margin-top: 10px;
}

/* Footer Styles */
footer {
  background-color: #fff;
  color: #333;
  text-align: center;
  padding: 20px 40px;
  border-top: 1px solid #e0e0e0;
}

footer p {
  margin: 5px 0;
}

footer a {
  color: #007BFF;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Small Screen Responsiveness */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  section h2 {
    font-size: 1.5rem;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }
}
