body
{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

header {
    background-color: #005594;
    background-size: cover;
    background-position: center;
    height: 4em;
    color: white;
}

header h1 {
    display: inline-block;
    text-align: center;
    margin-top: 1.5em;
}

.logo
{
    height: 48px;
    float: left;
    margin: 6px 12px;
    border-radius: 75%;
}


form {
    display: grid;
    padding: 1em;
    background: #f9f9f9;
    border: 1px solid #9c9c9c;
    margin: 2rem auto 0 auto;
    max-width: 80%;
    padding: 1em;
}

form th {
    font-weight: 600;
    text-align: center;
    width: 100%;
    padding-bottom: 1em;
}

table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 1em;
}

.columnA {
    width: 25%;
}

.columnB {
    width: 75%;
}

form input {
    background: #fff;
    border: 1px solid #9c9c9c;
    width: 75%;
}

form textarea {
    width: 100%;
    height: 80px;
}

form button {
    background: lightgrey;
    padding: 0.7em;
    width: 40%;
    border: 0;
    position: relative;
    margin: 0 30% 0 30%;
}

form button:hover {
    background: gold;
}

label {
    padding: 0.5em 0.5em 0.5em 0;
}

input {
    padding: 0.7em;
    margin-bottom: 0.5em;
}
input:focus {
    outline: 3px solid gold;
}

.line {
    border-bottom: 1px solid black;
}

footer {
    background-color: #005594;
    background-size: cover;
    background-position: center;
    height: 4em;
    margin-top: 1em;
    padding: 5px;
    color: white;
}

footer h1 {
    text-align: center;
    padding: .5em 0 .5em 0;
}

footer .logo {
    height: 48px;
    float: right;
    margin: 6px 12px;
    border-radius: 75%;
}


/* Tablet CSS code and up */
@media only screen and (min-width: 481px) {
}



/* Desktop CSS code and up */
@media only screen and (min-width: 1025px) {
}