* {
  box-sizing: border-box;
}

/* Style the body */
body {
  font-family: Arial;
  margin: 0;
}

h1{

}

h2,p{
		margin-left:30px;
}

h4{
		margin-left:30px;
		color: #aabb00;
}



/* Header/logo Title */
.header {
  width:100%;
  height: auto;
  color:#666;
  font-size:0.8em;
}

/* Style the top navigation bar */
.navbar {
  display: flex;
  background-color: #333;
}

/* Style the navigation bar links */
.navbar a {
  color: white;
  padding: 14px 20px;
  text-decoration: none;
  text-align: center;
}

/* Change color on hover */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Column container */
.row {  
  display: flex;
  flex-wrap: wrap;
}

/* Create two unequal columns that sits next to each other */
/* Sidebar/left column */
.side {
  flex: 30%;
  background-color: #f1f1f1;
  padding: 20px;
}

/* Main column */
.main {
  flex: 70%;
  background-color: white;
  padding: 20px;
}

/* Fake image, just for this example */
.fakeimg {
  background-color: #aaa;
  width: 100%;
  padding: 20px;
}

/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  background: #ddd;
}

.footer ul{  
	text-align: left;		
}

.footer ul li{  
	display: inline;
	list-style-type:none;	
	padding: 20px;
}


input{
	margin-left:4em;
}



p input{
	margin-left:0.0em;
}

input[type=submit] {
        color: #aa2222;
		margin-left:2em;
		font-size:1em;
    }

form p{
 margin-left:2em;	
}

form select{
		margin-left:2em;
		font-size:1em;
}





/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
  .row, .navbar {   
    flex-direction: column;
  }
}