@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: 1;
background-color: #A85D5E;
}
section nav {
grid-column: 2;
grid-row: 1;
grid-column-end: 4;	
background-color: #422519;

}
section article {
grid-column: 2;
grid-row: 3;
grid-column-end: 4;
background-color: #6387D3;
}

section aside {
grid-column: 1;
grid-row: 2;
grid-row-end: 5 ;
background-color: #373FE4;	
}

section footer {
grid-column: 2;
grid-row: 4;
grid-column-end: 4 ; 
background-color: #F9FF00;	
