* {
    box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial;
}
/* Style the container */
 div.container
{
width:90%;
margin: auto;

}
/* Style the header */
.header {
    text-align: left;
	min-height: 300px;
	padding: 45px;
	background-image: url("header300x1500.jpg");
    background-repeat: no-repeat;
/* 	background-size: 1250px 300px; */
	border-top-right-radius: 25px;
	border-top-left-radius: 25px;
}
.headercolume{
	float: left;
    width: 50%;
	border-style: hidden;
	border-color: red;
}
/* Clear floats after the columns */
.header:after {
    content: "";
    display: table;
    clear: both;
}
.headerline1{
	color: white;
	font-size: 40px;
	
}
.headerline2{
	color: black;
	font-size: 40px;
	font-style: italic;
	
}
/* Style the top navigation bar */
.topnav {
    overflow: hidden;
    background-color: #333;
}

/* Style the topnav links */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Change color on hover */
.topnav a:hover {
    background-color: #ddd;
    color: black;
}

/* Create three equal columns that floats next to each other */
.column {
    float: left;
    width: 33.33%;
    padding: 15px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}
.footer {
    background-color: #333;
    text-align: right;
	color: white;
    padding: 10px;
	border-bottom-right-radius: 25px;
	border-bottom-left-radius: 25px;
} 
.active {
    background-color: #4CAF50;
}
/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media (max-width:600px) {
    .column, .headercolume{
        width: 100%;
    }
}