  body{
    margin: 0;
		font-size: 30px;
  }
  
  .container {
    background-color: lightyellow;
  }
  
  /*Hier verander je de header bovenaan je website*/
  header {
    background-color: tomato ;
    color:black;
    width: 100%;
    text-align: left;
  }
  
  /*Hier pas je de navigatiebalk links van je website aan*/
  nav {
    background-color: plum;
    color:black;
  }
  
  /*Hier pas je de header aan van je website*/
  main {
    background-color: lightgreen;
    color: black;
    text-align: left;
  }
  
  /*Hier pas je de rechterkant van je website aan*/
  aside {
    background-color: orange;
    color:black;
  }
  
  /*Hier pas je de footer aan*/
  footer {
    background-color: LightSteelBlue;
    color:black;
    text-align: left;
  }
	
	img {
		width: 100px;
		height: auto;
		float: right;
		margin: 10px;
	}

@media (max-width: 650px) {

  .container {
    width: 100%;
  }
  
  header {
    min-height: 100px;
  }
  
  nav {
    display: none;
  }
  
  main {
    width: 100%;
    min-height: 200px;
  }
  
  aside {
    width: 100%;
    min-height: 200px;
  }
  
  footer {
    width: 100%;
    min-height: 200px;
  }
  
}

@media (min-width: 650px) {

  .container {
    width: 80%;
    margin: 0 auto;
  }
  
  header {
    min-height: 100px;
  }
  
  nav {
    float: left;
    width: 15%;
    min-height: 637px;
  }
  
  main {
    width: 70%;
    float: left;
    min-height: 637px;
  }
  
  aside {
    width: 15%;
    float: left;
    min-height: 637px;
  }
  
  footer {
    width: 100%;
    min-height: 200px;
    clear: both;
  }
  
}