body {
      font-family: "Quattrocento", serif;
  font-weight: 400;
  font-style: normal;
  background-color: antiquewhite;
  margin: 0;
  padding: 0;
}
header{
    background-color: whitesmoke;
    padding:24px 0;
    color: chocolate;
    text-align: center;
    font-size: 25px;
}
header a{
    text-decoration: none;
    color:chocolate;
}
nav{
    background-color: chocolate;
    padding: 5px;
}
ul{
    list-style: none;
    display: flex;
}
nav a{
    text-decoration: none;
    color: whitesmoke;
    margin: 0 16px;
    font-size: 19px;
}
nav a:hover{
    color:cyan;
}
section{
    background-color: whitesmoke;
    border: 2px solid chocolate;
    border-radius: 4px;
    padding: 24px;
    margin :24px auto;
    transition:box-shadow 0.3s ease;
    line-height: 1.6;
}
section:hover{
    box-shadow: 0 4px 8px grey
}
h2{
    font-size: 20px;
    text-align: center;
    color: chocolate;
}
form label{
    display: block;
}
form input,form button,form select{
    border: 2px solid chocolate;
    border-radius: 4px;
}
form button{
    background-color: chocolate;
    color:whitesmoke;
    padding:8px 16px;
    transition: background-color 0.3s ease;
}
form button:hover{
    background-color:rgb(114, 48, 0);
}
form button:active{
    background-color: brown;
}


