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

html, body {
  height: 100%;
}

body {
  background-color: rgb(40.2734693878, 102.7265306122, 100.9755102041);
  width: 100dvw;
  height: 100dvh;
  font-weight: 500;
  font-style: normal;
  color: red;
}

main {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
main .tile {
  background-color: aqua;
  box-shadow: inset -4px 10px 6px 0px rgba(0, 0, 0, 0.2);
}

/*# sourceMappingURL=style.css.map */
