*{
    font-family: 'Courier New', Courier, monospace;
    font-size: 16px;
}
table {
    border: 1px black solid;
    box-shadow: 0 0 20px gray;
}
table caption{
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}
th {
    text-transform: uppercase;
    color: aliceblue;
    background-color: blue;
    padding: 10px;
}
td {
    padding: 8px;
    text-align: left;
}
 tr:nth-child(odd) {
    background-color: antiquewhite;
}
 tr:nth-child(even) {
    background-color: cyan;
}
div.form-container {
    margin-top: 30px;
    background-color: lightgray;
    border-radius: 10px;
    padding: 20px;
}
div h1 {
    text-transform: uppercase;
    text-align: center;
    padding: 20px;
}
label {
    display: block;
    font-weight: bold   ;
}
input,
select,
textarea,
button {
    width: 100%;
    box-sizing: border-box;
    border-radius: 8px;
    border: 1px solid gainsboro ;
}
button {
    padding: 10px;
    color: white;
    background-color: aqua;
}