.container { 
  display: grid; 
  grid-template-columns:  repeat(3, 1fr);  
  grid-template-rows: repeat(2,110px); 
  background-color: beige; 
  gap: 1px; 
  grid-template-areas: 'header header header' 
                       'nav nav nav' 
                       'aside content content' 
                       'aside section section' 
                       'footer footer footer'; 
}


.container > div { 
  background-color:#ff9966;
  color:#ffffff;
  font-size: 20px; 
} 
  
#one {
	background-color :#000066;
	color:#ffffff;
	grid-area: header; 
} 

#titulo {
	text-align:center;
	font-size:5vw;
	

}

#two { 
 grid-area: nav;
 text-align:center; 
}
#three { 
  grid-area: aside; 
  background-color :#ff6200;
}     
#four { 
  grid-area: content; 
} 
#five { 
  grid-area: section; 
}    
#six { 
  background-color :#000066;
  grid-area: footer;
  text-align:center; 
}
