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

div#container {
  height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: 50px 50px 1fr 50px;
      grid-template-rows: 50px 50px 1fr 50px;
      grid-template-areas: " header " " nav " " main " " footer ";
  max-width: 2000px;
  max-height: 1300px;
}

div#container :focus {
  outline: solid blue;
  -webkit-box-shadow: 0 0 0 3px rgba(0, 255, 21, 0.8);
          box-shadow: 0 0 0 3px rgba(0, 255, 21, 0.8);
}

div#container header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: header;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

div#container header h1 a {
  color: black;
}

div#container header > a.skip {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

div#container header > .skip:focus {
  position: absolute;
  left: 20px;
  top: auto;
  width: 90px;
  height: auto;
  overflow: hidden;
}

div#container nav {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: nav;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

div#container nav p {
  padding-left: 5px;
}

div#container nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  list-style-type: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

div#container nav ul li a {
  margin: 20px;
  padding: 2px;
  color: black;
  background-color: white;
}

div#container main {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: main;
  list-style-type: none;
}

div#container main h2 {
  text-align: center;
  padding: 15px;
  background-color: white;
}

div#container main h3 {
  background-color: white;
  text-align: center;
  padding: 15px;
}

div#container main article section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 15px;
  background-color: #661C1C;
}

div#container main article section table {
  background-color: white;
  max-width: 80%;
  border-collapse: collapse;
}

div#container main article section table tbody tr th {
  border: 3px;
  border-style: solid;
  padding: 3px;
}

div#container main article section table tbody tr td {
  border: 3px;
  border-style: solid;
  padding: 2px;
}

div#container main article section p {
  background-color: white;
  max-width: 80%;
  padding: 10px;
  font-size: large;
}

div#container main article section picture {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 600px;
  padding-bottom: 15px;
}

div#container footer {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  grid-area: footer;
  text-align: center;
  padding-bottom: 50px;
  background-color: white;
}

@media screen and (min-width: 768px) {
  div#container :focus {
    -webkit-box-shadow: 0 0 0 10px rgba(0, 255, 21, 0.8);
            box-shadow: 0 0 0 10px rgba(0, 255, 21, 0.8);
  }
  div#container header > .skip:focus {
    width: auto;
  }
  div#container nav p {
    padding-left: 10px;
  }
  div#container nav ul li a {
    padding-left: 10px;
  }
  div#container main article section p {
    max-width: 55%;
  }
}

@media screen and (min-width: 1025px) {
  div#container main article section p {
    max-width: 30%;
  }
}
/*# sourceMappingURL=mall.css.map */