* {
  padding: 0;
  margin: 0;
}

body {
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(blue, yellow);
  height: 100vh;
}

header {
  width: 1000px;
  height: 100px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 3px;
  word-spacing: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 50px;
}

main {
  height: 300px;
  width: 800px;
  background-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.player {
  flex: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

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

.name {
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.total-score {
  font-weight: bold;
  font-size: 30px;
  color: orange;
  margin-bottom: 30px;
}

.current {
  background-color: orange;
  opacity: 0.8;
  width: 40%;
  padding: 15px;
  margin: 0 auto;
  border-radius: 15px;
}

.current-score {
  font-weight: bold;
  color: #ffffff;
  margin-top: 15px;
}

.menu {
  display: flex;
  align-items: center;
  flex-direction: column;
  position: absolute;
}

.btn {
  margin-bottom: 20px;
  width: 150px;
  border: none;
  font-family: inherit;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: bold;
  padding: 5px;
  border-radius: 15px;
  /* background: none; */
  background-color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.btn:active {
  transform: translate(0, 3px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.5);
}

.dice {
  height: 80px;
  margin-bottom: 20px;
}

.hidden {
  display: none;
}
