* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
	margin:0;
}

/* Style the header */
.header {
    padding: 0;
    text-align: center;
    font-size: 35px;
	background-color: #ebf3d9;
	width:100%;
	position:relative;
	float: left;
}
.header img{
	max-width:100%;
	width:auto;
	 padding: 0;
}

/* Create three equal columns that floats next to each other */
.row{
	float: left;
	width: 100%;
	padding: 0;
	position:relative;
	margin:0 auto;
	
}
.row1, .row2{
	width:100%;
	max-width: 900px;
	padding: 0;
	position:relative;
	margin:0 auto;
}
.row2{
	max-width: 900px;
	text-align:right;
	margin-bottom:40px;
}
.column {
    float: left;
    width: 33.33%;
    padding: 0;
}
.row1 h1{font-size:35px;}
.row1 h2{font-size:25px;font-weight:normal;}
a {
	text-decoration:none;color:#000;	
	}
a:hover {
	text-decoration:underline;	color:#80c633;
	}
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
	 padding: 0;
	 border:0 none;
}

/* Style the footer */
.footer {
    background-color: #f1f1f1;
    padding: 10px;
    text-align: center;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width: 600px) {
    .column {
        width: 100%;
    }
}