/* some minor styling to make the forms we use more appealing */
body {
    margin: 50px;
    background-color: #808080;
    font-family: 'Courier New', Courier, monospace;
}
form {
    background-color: #ccc;
    padding: 10px;
    margin: auto;
    margin-top: 50px;
    max-width: 800px;
}
fieldset {border: none;}
h3 {margin-bottom: 0;}
input {float: right;}
select {
    float: right;
    width: 179.2px;
}
fieldset, textarea, input, select {
    font-family: 'Courier New', Courier, monospace;
    padding: 4px;
    border: none;
    border-radius: 2px;
    font-size: 14px;
}
textarea {width: 99%;}
button {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    padding: 6px 11px;
    margin: 3px;
    border: none;
    border-radius: 2px;
    display: inline-block;
    background-color: white;
}
button:hover {background-color: #e9e9ed;}

#submit {
    float: none;
    display: block;
    margin: auto;
    margin-bottom: 10px;
}

.title {
    text-align: center;
}