body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: antiquewhite;
}
/* Bordered form */
form {
    border: 3px solid #b7b7b7;
    padding: 12px;
    margin:auto;
}
/* Full-width inputs */
input[type=text], input[type=password], input[type=number]{
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px brown;
    background-color: antiquewhite;
    border-style: solid;
    box-sizing: border-box;
}
input:hover[type="text"], input:hover[type="password"], input:hover[type="number"]{
    background-color: rgb(165, 42, 42, 0.2);
}
/* Set a style for all buttons */
button {
    background-color: cadetblue;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}
/* Add a hover effect for buttons */
button:hover {
    opacity: 0.8;
}
/* Add padding to containers */
.container {
    width: 300px;
    padding: 16px;
    margin:auto;
}

h1{
    color: brown;
    font-family: 'Courier New', Courier, monospace;
}

a{
    color: brown;
    padding: 14px;
}