body{
    font-family: "Lato", sans-serif;
    background-color: #eee;
    border: 10px solid #a4733e;
}

/*Button*/
.button {
    font-weight: 400;
    color: gray;
    cursor: pointer;
  }
  .button:hover {
    color: black;
    font-size: larger;
    transition-property: font-size;
    transition-duration: 0.3s;
    transition-delay: 0s;
    transition-timing-function: ease;
  }
  /*Icons*/
  .icons {
    width: 30px;
    position: relative;
    top: 5px;
    padding-right: 8px;
  }
  .icon-replay {
    content: url(../images/icons/add-circle-outline.svg);
  }
  .icon-play {
    content: url(../images/icons/reload.svg);
  }
  
  .icon-hold {
    content: url(../images/icons/ios-download-outline.svg);
  }
  /*Dice*/
  .dice {
    max-width: 80px;
    height: auto;
    margin-top: 30px;
    box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.1);
  }

  /*Players*/
  .players {
    font-weight: 300;
    font-size: large;
    letter-spacing: 1px;
    margin: 0;
  }
  .active-player {
    content: url(../images/icons/circle-fill.svg);
    width: 13px;
    margin-left: 10px;
    padding-bottom: 2px;
  }
  .winner-player {
    font-weight: 700;
    color: red;
  }

  /*Scores*/

  .score {
    font-weight: 200;
    font-size: 50px;
    margin: 0;
  }
  .current {
    background-color: red;
    width: 100px;
    margin: auto;
    padding: 10px 0 10px 0;
  }
  .current-label {
    font-weight: 300;
    font-size: 10px;
    margin-top: 0;
  }
  
  .current-score {
    font-size: 20px;
    margin: 0;
  }

  @media (min-width: 576px) {
    .button {
      margin: 20px 0 20px 0;
    }
    .dice {
        margin-top: 50px;
      }
    .player {
        font-size: x-large;
        margin: 15px 0 0 0;
      }
      .current {
        margin-top: 120px;
      }
  }
  /*# sourceMappingURL=style.css.map */