
body {
    background-color: #3C99DC;
    font-family: courier;
}

h1 {
    margin-top: 100px;
    text-align: center;
}

h2 {
    margin-top: 100px;
    text-align: center;
}

.myform {
    background-color: white;
    border: 2px solid black;
    border-radius: 7px;
    box-shadow: 0px 5px 20px 10px black;
    padding: 20px;
    margin: auto; /* centers the form form in the center of page */
    width: 400px; /* changes the width of the box so it doesn't stretch across page */
}

input[type=text] {
    border: 2px solid black;
    margin: 0px 0px 5px 0px;
    width: 300px;
    height: 30px;
}

input[type=checkbox] {
    margin: 0px 10px 5px 10px;
}

input[type=submit]{
    margin: 5px 0px 0px 0px;
}
