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

body {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: purple;
}

header > h1 {
  text-align: center;
  font-size: 20px;
  background-color: blueviolet;
}

main {
  background-color: lightblue;
}

main > h2 {
  padding: 100px;
}

main > h2 > div {
  background-color: lightblue;
}

img {
  width: 100vw;
}

footer > h3 {
  background-color: lightblue;
}
/*# sourceMappingURL=stylesheet.css.map */