body {
  background-color: #f39c12;
}

#app {
  display: flex;
}

#player {
  background-color: #f39c12;
}

#dealer {
  background-color: #e67e22;
}

.board {
  min-height: 100vh;
  width:100%;
  display:flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.dice {
  background-image: url('../images/dice-sprite.png');
  width: 100px;
  height: 100px;
  margin: 1em;
}
