@charset "UTF-8";
/* CSS Document */

section {
display: grid;
grid-columns:300px 1fr 300px;
grid-rows:780px;
	
}
section header {
grid-column: 1;
grid-row: 1;
grid-column-end: 4;
background-color: #030E9F;
}
section nav {
grid-column: 1;
grid-row: 2;
grid-row-end: 8; 
grid-column-end: 1;	
background-color: #2B45D9;

}
section article {
grid-column: 2;
grid-row: 2;
grid-row-end: 4; 
grid-column-end: 4;
background-color: #9CE5FF;
}

section aside {
grid-column: 3;
grid-row: 2;
grid-row-end: 5 ;
background-color: #14CBDC;	
}

section footer {
grid-column: 2;
grid-row: 6;
grid-column-end: 4 ; 
background-color: #1C1E65;	
