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

div.grid-container {
  height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100px 1fr 100px;
      grid-template-columns: 100px 1fr 100px;
  -ms-grid-rows: 100px 3fr 150px;
      grid-template-rows: 100px 3fr 150px;
      grid-template-areas: "header header header" "main main main" "footer footer footer";
}

div.grid-container header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: header;
  background-color: #b29079;
  width: 100%;
}

div.grid-container header h1 {
  font-size: 50px;
}

div.grid-container header nav {
  background-color: #b29079;
}

div.grid-container header nav ul {
  max-width: 700px;
  margin: auto;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

div.grid-container main {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: main;
}

div.grid-container main section > h2 {
  font-size: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

div.grid-container main section > h3 {
  margin-top: 100px;
  text-align: center;
}

div.grid-container main section > p {
  text-align: center;
  margin: auto;
  width: 60%;
  padding: 10px;
}

div.grid-container main section > img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 100px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

div.grid-container footer {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: footer;
  background-color: #b29079;
}

div.grid-container footer > p {
  font-size: small;
}
/*# sourceMappingURL=mall.css.map */