body {
  width: 100vw;
  height: 100vh;
  background-image: linear-gradient(to top left, #753682 0%, #bf2e34 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.player {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #b16f8a;
}

.button {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: bold;
  color: black;
  cursor: pointer;
  opacity: 0.92;
  background-color: #fff;
}

.button:active {
  background-color: #bcbaba;
}

.active {
  background-color: rgba(255, 255, 255, 0.665);
}

.hidden {
  display: none;
}

/*? ___________________________________important______________________________________*/

.container {
  display: grid;

  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  width: 700px;
  height: 400px;
}

.score_div {
  display: inline-block;
  background: #c02f58;
  width: 150px;
  height: 100px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  justify-content: space-evenly;
}

.title {
  color: #000000;
  font-size: 48px;
  margin-bottom: 32px;
}
.total_score {
  font-size: 60px;
  color: #c02f58;

  margin-bottom: 60px;
}
.current_score {
  font-size: 20px;
}
.score {
  background: #c02f58;
  font-size: 28px;
}

.roll {
  padding: 40px 0;
  position: absolute;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.new {
  margin-bottom: auto;
}

.img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  margin-bottom: 50px;
}

.roll_El {
  margin-bottom: 30px;
}

.winner {
  background-color: gold;
  font-weight: bold;
}
