@import url("https://fonts.googleapis.com/css?family=Roboto");
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}
body main {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 400px;
}
body main .square {
  background-color: #1d1d1d;
  width: 16px;
  height: 16px;
  box-shaow: 0 0 2px #000;
  margin: 2px;
  transition: 2s ease;
}
body main .square:hover {
  transition-duration: 0s;
}/*# sourceMappingURL=index.css.map */