    body {
      font-family: Arial, sans-serif;
       background: url('Background1.png') no-repeat center center fixed;
       background-size: cover;
      color: #eee;
      display: flex;
      margin: 0;
      padding: 2rem;
    
    }
    #quote {
      font-size: 1.5rem;
      font-style: italic;
      max-width: 300px;
      line-height: 1.5;
    }
    header {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  backdrop-filter: blur(6px);
}


nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
  justify-content: flex-start;
  align-items: center;
}

nav a {
  color: #eee;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffcc00;
}
.form-wrapper {
  max-width: 600px;
  margin: 4rem auto;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  color: #fff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input, textarea {
  padding: 0.75rem;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
}

button {
  padding: 0.75rem;
  border: none;
  background-color: #ffcc00;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s ease;
}

button:hover {
  background-color: #e6b800;
}
