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

body {
  width: 100vw;
  height: 100vh;
}

div#container {
  height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 60px 30px 1fr 0.5fr 20px;
      grid-template-rows: 60px 30px 1fr 0.5fr 20px;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
      grid-template-areas: "header" "nav" "main" "img" "footer";
}

div#container > header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: header;
  text-align: center;
  padding-top: 10px;
}

div#container > nav {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: nav;
}

div#container > nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

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

div#container > main > .img {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  grid-area: img;
  display: block;
  height: 10px;
}

div#container > footer {
  -ms-grid-row: 5;
  -ms-grid-column: 1;
  grid-area: footer;
}
/*# sourceMappingURL=style.css.map */