* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0px;
  margin: 0px;
}

div#container {
  background-color: aquamarine;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20px 80px 20px 1fr 20px 20px;
      grid-template-columns: 20px 80px 20px 1fr 20px 20px;
  -ms-grid-rows: 100px 20px 500px 40px 100px;
      grid-template-rows: 100px 20px 500px 40px 100px;
      grid-template-areas: "header header header header header header" "   .      .      .     .      .      .   " "   .     nav     .    main    .      .   " "   .      .      .     .      .      .   " "footer footer footer footer footer footer";
}

div#container > header {
  background-color: aqua;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 6;
  grid-area: header;
  height: 100px;
}

div#container > nav {
  background-color: blue;
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: nav;
}

div#container > nav > ul {
  list-style-type: none;
}

div#container > main {
  background-color: cornflowerblue;
  -ms-grid-row: 3;
  -ms-grid-column: 4;
  grid-area: main;
}

div#container > footer {
  background-color: darkblue;
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  -ms-grid-column-span: 6;
  grid-area: footer;
}
/*# sourceMappingURL=mall.css.map */