* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('images/adrian-infernus-AKWFs_ohU-k-unsplash.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  line-height: 1.6;
}

form {
  background: white;
  padding: 1.5em;
  padding: 1.5em;
  border-radius: 8px;
  max-width: 500px;
  margin: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

input, textarea {
  width: 100%;
  margin-bottom: 1em;
  padding: 0.8em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

button {
  padding: 0.7em 1.5em;
  background-color: #2f4f4f;
  border: none;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
}

body h1 {
  margin-top: 2%;
  text-align: center;
  font-size: 2em;
}


  /* Header Styles */
  header {
    background: #2f4f3d;
    color: white;
    padding: 20px;
    text-align: center;
  }

  header h1 {
    margin: 0;
    font-size: 2em;
  }

  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
    padding: 0;
  }

  nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    font-size: 1em;
  }

  nav a:hover {
    color: #4caf50;
  }

@media (max-width: 600px) {
  body h1,
  header h1 {
    font-size: 1.5em;
  }

  form {
    padding: 1em;
  }

  button {
    width: 100%;
    padding: 0.8em;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    font-size: 1.1em;
  }
}