
* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
	background-image: url("images/background.jpg");
}


/* Style the header */
.header {
    overflow: hidden;
	white-space: nowrap;
	text-align: center;
    
	
}

/* Create three unequal columns that floats next to each other */
.column {
	
    float: left;
    padding: 0px;
    height: 300px; 
}

/* Left and right column */
.column.side {
    width: 25%;
}

/* Left and right column */
.column.side.left {
    padding-top: 3%;
}

/* Middle column */
.column.middle {
    width: 50%;
   
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Style the footer */
.footer {
    padding: 0px;
    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.side, .column.middle {
        width: 100%;
    }
}
 */
