* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  background-image: linear-gradient(
    rgba(70, 25, 25, 0.3),
    rgba(70, 25, 25, 0.3)
  );
  background: url(../img/album_cover03.jpeg) no-repeat;
  background-size: cover;
  font-weight: 100;
  font-family: sans-serif;
  position: relative;
  height: 1000px;
}

.container {
  width: 900px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border-radius: 5px;
  height: 700px;
}


.pannel-1,
.pannel-2 {
 width: 50%;
  float: left;
  height: 590px;
  padding: 100px;
}
.winner1,
.winner2 {
  top: -55px;
  position: relative;
  width: 55px;
  z-index: 1;
}
.player {
  font-size: 40px;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 100;
  margin-top: 20px;
  position: relative;
}
.score {
  margin-top: 55px;
  text-align: center;
  font-size: 90px;
  font-weight: 100;
  color: #ff8525;
  margin: 80px;
}
.active {
  background: #f7f7f7;
}
.active .player {
  font-weight: 300;
}
.active .player::after {
  content: "\2022";
  font-size: 47px;
  position: absolute;
  color: #ff8525;
}
.box {
  border-radius: 5px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid #ff8525;
  padding: 12px;
  background: #ff8525;
  color: #fff;
}
.label {
  /*margin: 10px 0;
  color: #f7f7f7;*/
  font-size: 30px;
}
.totalScore {
  font-size: 35px;
}
button{
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  color: #555;
  background: none;
  border: none;
  font-weight: 100;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
button:hover{
  font-weight: bold;
}
button:hover i{
  margin-right: 20px;
}
button:focus{
  outline: none;
}
i{
  color: #EB4D4D;
  display: inline-block;
  margin-right: 15px;
  font-size: 32px;
  line-height: 1;
  vertical-align: text-top;
  margin-top: -4px;
  transition: margin 0.3s;
}
.dice {
  position: absolute;
  left: 50%;
  top: 235px;
  height: 100px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  transform: translateX(-50%);
}
.newGame {
  top: 55px;
  font-size: 30px;
}
.roll {
  top: 430px;
  font-size: 30px;
}
