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

div#container {
  height: 100vh;
  background-color: white;
  display: grid;
  grid-template-columns: 50px auto 1fr 80px 50px;
  grid-template-rows: 100px 100px 1fr 100px;
  grid-template-areas: "header header header header  header" "nav nav    nav     nav nav" " . main  main   main . " "footer footer footer footer footer";
}
div#container > header {
  grid-area: header;
  height: 100px;
  background-color: azure;
}
div#container > header > a.skip {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
div#container > header > a.skip:focus {
  position: static;
  width: auto;
  height: auto;
}
div#container > nav {
  grid-area: nav;
  background-color: black;
}
div#container > nav > ul {
  list-style-type: none;
  display: flex;
  align-items: center;
}
div#container > main {
  grid-area: main;
  background-color: darkgray;
}
div#container > main > h1 {
  text-align: center;
}
div#container > main > h3 {
  text-align: center;
}
div#container > main > img {
  width: 100%;
}
div#container > footer {
  grid-area: footer;
  background-color: bisque;
}

nav {
  background-color: aquamarine;
}
nav > ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}
nav > ul li > a {
  border-radius: 20px;
  box-shadow: 5px 10px black;
  background-color: antiquewhite;
  padding: 20px 40px;
  display: block;
  font-size: large;
  font-weight: 800;
}
nav > ul li > a:active {
  box-shadow: 1px 2px black;
  font-size: 16px;
  font-weight: 600;
}/*# sourceMappingURL=mall.css.map */