body {
    background: #ffc;
    margin: 0 auto;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
h1 {
    text-align: center;
}
form {
    width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    border: 3px solid #56789E;
    background: #CCC;
}
label {
    color: #F82;
    border-radius: 5px 5px 0 0;
    padding: 3px 5px;
    display: inline-block;
    text-decoration: underline;
    font-weight: bold;
}
button[type=submit], button[type=reset] {
    background-color: black;
    color: white;
    border-radius: 2pc;
    padding: 12px 20px;
    border: 2px solid white;
  }
button[type=submit]:hover, button[type=reset]:hover {
    background-color: white;
    color: black;
    border: 2px solid black;
  }
input[type=text], input[type=email], input[type=date], select, textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #4F3;
    border-radius: 8px;
    box-sizing: border-box;
    margin-top: 5px;
    margin-bottom: 10px;
}
textarea {
    height: 150px;
}
input[type=range] {
    width: 100%;
    margin-top: 5px;
    margin-bottom: 10px;
}




nav {
    text-align: center;
}
nav a {
    text-decoration: none;
    color: black;
    text-transform: uppercase;
    background: white;
    padding: 5px 10px;
    margin: 0 5px;
    display: inline-block;
}
