body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;  
}
h1{
    text-align: center;
}


header {
    background-color:burlywood;
    color: white;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 5px 10px;
}

nav ul li a:hover {
    background-color: rgb(228, 142, 29);
    border-radius: 5px;
}

main {
    padding: 5px;
    text-align: center;
}

footer {
    background-color: burlywood;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}
form {
  max-width: 400px;
  margin: 20px auto;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

form label {
  font-weight: bold;
  text-align: left;
}

form input,
form select,
form button {
  padding: 8px;
  font-size: 14px;
}

form button {
  background-color: burlywood;
  border: none;
  color: white;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s;
}

form button:hover {
  background-color: rgb(228, 142, 29);
}

#formMsg {
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}



