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

body {
  height: 100vh;
}

div#container {
  background-color: aquamarine;
  min-height: 100vh;
  display: -ms-grid;
  display: grid;
  text-align: center;
  -ms-grid-columns: 1fr 10px 6fr 10px 1fr;
      grid-template-columns: 1fr 10px 6fr 10px 1fr;
  -ms-grid-rows: 50px 50px 1fr 100px;
      grid-template-rows: 50px 50px 1fr 100px;
      grid-template-areas: "header header header header header" "   nav      nav      nav     nav      nav   " "   aside     .     main    .    .   " "footer footer footer footer footer";
}

div#container > header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: header;
  background-color: red;
  height: 50px;
}

div#container > nav {
  background-color: red;
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: nav;
}

div#container > nav > ul {
  list-style-type: none;
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}

div#container > main {
  margin: 5px;
  background-color: cornflowerblue;
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: main;
  padding: 20px;
}

div#container > main > div#baldur {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

div#container > main > div#baldur > img {
  padding: 10px 0px 50px 0px;
  width: 200px;
}

div#container > main > aside {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: aside;
}

div#container > main > section > img {
  padding: 100px 0px 0px 0px;
  width: 200px;
}

div#container > main#mainBoll {
  padding: 0px;
}

div#container > main#mainBoll > canvas {
  height: 100%;
  width: 100%;
}

div#container > footer {
  background-color: darkblue;
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 5;
  grid-area: footer;
}

@media only screen and (min-width: 768px) {
  div#container > main {
    background-color: crimson;
  }
  div#container > main > div#baldur > img {
    width: 500px;
  }
}

@media only screen and (min-width: 992px) {
  div#container > main {
    background-color: #df9800;
  }
}
/*# sourceMappingURL=mall.css.map */