* {
    font-family: "Source Sans Pro", -apple-system, "system-ui", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-size: 14px;
    box-sizing: border-box;
    color: #535353;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 24px;
    font-weight: normal;
}

body {
    margin: 0;
    padding: 0;
    background-color: #B1CC00;
}

.header {
    text-align: center;
    border-top: 10px solid #B1CC00;
    padding: 20px;
    margin: 0;
    background: #fff;
}

.footer-top-background {
    background: #DEDEDE none repeat scroll 0 0;
}

.footer-top-background > img {
    display: block;
    width: 100%;
}

.footer-background {
    background-color: #B1CC00;
    text-align: center;
    font-size: 1.2em;
    padding: 10px 0;
    color: #fff;
    position: relative;
}

/* Create three equal columns that floats next to each other */
.column {
    float: left;
    width: 33.33%;
    padding: 10px;
}

.column > div {
    border: 1px solid rgba(0,0,0,.125);
    padding: 10px;
    height: 200px;
    border-radius: 20px;
}

.row {
    background: #fff;
    padding-bottom: 100px;
}
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        width: 100%;
    }
}
