<style>
* {
	margin: 0;
	box-sizing: border-box;
 }
 
 body {
  font-family: "Lucida Sans", sans-serif;
  background-color: lightgrey
  ;
  }
  img {
	  width: 25%;
	  height: auto;
	 
  }
  .grid-container {
  display: grid;
  grid-template-areas:
  'header header header header header header'
  'menu main main main main right'
  'footer footer footer footer footer footer';
  gap: 10px;
  background-color: white;
  padding: 10px;
  
  }
  
  .item1 {
  grid-area: header;
  background-color: #000000;
  text-align: center;
  color: #ffffff;
  }
  
  .item1 > h1 {
  font-size: 40px;
  
  }
  
  .item2 {
  grid-area: menu;
  }
  
  .item2 ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  }
  
  .item2 li{
  padding: 8px;
  margin-bottom: 7px;
  background-color: #cccc99;
  color: #ffffff;
  }
  
  .item2 li:hover {
  background-color: #00aa00;
  }
  
  .item3 {
  grid-area: main;
  background-image: url(images/bgholk5.jpg );
  background-repeat: no-repeat;
  }
  
  .item3 > h1 {
  font-size: 30px;
  margin-bottom: 7px;
  }
  
  .item3 > p {
  margin-bottom: 7px;
  }
  
  .item4 {
  grid-area: right;
  border: 2px solid #000000;
  background-image: url(images/bgholk5.jpg) ;
  background-repeat: no-repeat;
  
  padding: 15px;
  color: #000000;
  }
  
  .item4 > h2 {
  font-size: 20px;
  margin-bottom: 5px;
  }
  
  .item5 {
  grid-area: footer;
  background-color: #cccc99;
  color: #ffffff;
  text-align: center;
  }
  
  @media only screen and (max-width: 600px) {
  .item1 {grid : 1 / span 6;}
  .item2{grid : 2 / span 6;}
  .item3 {grid : 3 / span 6;}
  .item4 {grid : 4 / span 6;}
  .item5 {grid : 5 / span 6;}
  }
  
   @media only screen and (max-width: 600px) {
  .item1 {grid : 1 / span 6;}
  .item2{grid : 2 / span 6;}
  .item3 {grid : 2 / span 6;}
  .item4 {grid : 3 / span 6;}
  .item5 {grid : 4 / span 6;}
  }
  
   @media only screen and (max-width: 768px) {
  .item1 {grid : 1 / span 6;}
  .item2{grid : 2 / span 6;}
  .item3 {grid : 2 / span 6;}
  .item4 {grid : 2 / span 6;}
  .item5 {grid : 3 / span 6;}
  }