#board {
  display: grid;
  grid-template-columns: repeat(5, 130px);
  grid-gap: 0;
  border: 1px solid lightgray;
  background-color: darkseagreen;

  div {
    height: 130px;
    width: 130px;
    box-sizing: border-box;
  }

  div.goal {
    border: 6px solid white;
  }

  div:nth-child(odd) {
    background-color: moccasin;
  }
}
