* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  height: 100vh;
  background: rgb(0, 0, 0);
  background-image: url(/chulhu-death-may-die-horror-board-game-box-artwork.jpg);
  background-size: auto;
  background-position: top center;
}
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 100vh;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background-color: rgba(255, 255, 255);
  opacity: 0.9;
  box-shadow: 0 1rem 2rem;
  border-radius: 1em;
  min-width: 60vw;
  height: fit-content;
  overflow: auto;
}
.dicebox {
  display: flex;
  justify-content: center;
  height: auto;
  margin-bottom: 9%;
  width: 100%;
  height: fit-content;
  overflow: auto;
}
.blackdice,
.greendice {
  display: grid;
  align-items: center;
  padding: 10px;
  width: 50%;
}
.greendie,
.blackdie {
  background-color: rgba(75, 98, 78, 1);
  width: 100%;
  border-radius: 0.5rem;
  justify-content: center;
  margin: 1%;
  border: none;
}
.blackdie {
  background-color: rgba(0, 0, 0);
}
#kostka1,
#kostka2 {
  width: 100%;
}
#roll {
  font-size: 5vh;
  width: 10vh;
  height: 10vh;
  background-color: #a4b494;
  border: none;
  color: white;
  border-radius: 50%;
  padding: 5px;
}
.button {
  margin-bottom: 4%;
  display: flex;
}
#roll:hover {
  background-color: #7e8b72;
}
.heading {
  font-family: "Macondo", cursive;
  justify-content: center;
  display: grid;
  font-size: 1rem;
}
.buttonsblack,
.buttonsgreen {
  width: 10vh;
  display: flex;
  margin-left: 2%;
  margin-right: 2%;
  align-content: space-between;
}
#blackminus,
#blackplus {
  width: 4vh;
  height: 4vh;
  background-color: #272927;
  font-size: 2vh;
  color: white;
  border-radius: 50%;
  border: none;
}
#greenminus,
#greenplus {
  width: 4vh;
  height: 4vh;
  background-color: #7e8b72;
  font-size: 2vh;
  color: white;
  border-radius: 50%;
  border: none;
}
.buttons {
  display: flex;
  align-content: space-around;
}
