html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.board {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (80px)[4];
      grid-template-columns: repeat(4, 80px);
  -ms-grid-rows: (80px)[4];
      grid-template-rows: repeat(4, 80px);
}

.board .piece {
  font-family: 'Montserrat', sans-serif;
  border: 1px solid black;
  background-color: cornsilk;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  margin-bottom: -1px;
  margin-left: -1px;
}

.board .piece[data-index=''] {
  background-color: dimgray;
}
/*# sourceMappingURL=style.css.map */