* {
    box-sizing: border-box;
}

.banner {
    display: block;
    margin: auto;
    width: 100%;
    max-width: 600px;
    height: auto;
    padding-top: 20px;
    padding-bottom: 20px;
}

.about {
    text-align: center;
}

p a {
    color: #04AA6D;
    text-decoration: none;
}
p a:hover {
    color: #45a049;
}

input[type=text],
input[type=email],
select,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
}

label {
    padding: 12px 12px 12px 0;
    display: inline-block;
}

input[type=submit] {
    background-color: #04AA6D;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: left;
    width: 100%;
    margin-top: 0;
}

input[type=submit]:hover {
    background-color: #45a049;
}

.container {
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}

.col {
    float: left;
    width: 100%;
    margin-top: 0;
}


/* Clear floats after the columns */

.row:after {
    content: "";
    display: table;
    clear: both;
}