body {
  margin: 0;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgb(20, 58, 20);
  color: white;
}


.main-container {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.main {
  position: relative;
  background-color: rgb(20, 58, 20);
  height: 880px;
  width: 900px;
  padding: 20px;
}

#message-box {
  position: fixed;
  top: 250px;
  left: 0px;
  height: 100px;
  width: 250px;
  padding: 10px;
  border-radius: 15px;
  background-color: rgba(0, 0, 0, 0.445);
  color: white;
  font-size: 20px;
}

#dealer-hand, #player-hand-container, #split-chips-container,
#current-hand-indicator-container {
  width: 100%;
  height: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#current-hand-indicator-container {
  position: absolute;
  height: 50px;
}

#player-hand-container {
  margin-top: 30px;
}

#split-chips-container {
  height: 50px;
  bottom: 50px;
}

#player-hand, #player-split-hand, .split-bet-chips {
  position: relative;
  height: 250px;
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.split-bet-chips {
  align-items: flex-end;
  height: 100%;
}

button:focus {
  outline: none;
}

.label {
  display: flex;
  justify-content: center;
  align-items: center;
}

.name {
  font-size: 30px;
  text-align: center;
}

#dealer-total, #player-total {
  font-size: 25px;
  height: 30px;
  width: 30px;
  margin-left: 10px;
  text-align: center;
  outline: 1px solid yellow;
}

#player-total {
  outline: 1px solid orange;
}

.controls {
  position: absolute;
  bottom: 20px;
  right: -75px;
  height: 100px;
  display: grid;
  grid-template-columns: 105px 105px 105px 105px;
  z-index: 100;
}

.control-button {
  height: 75px;
  width: 100px;
  border-radius: 15px;
  font-size: 20px;
}

#split-button {
  position: absolute;
  top: 96%;
  left: 74.5%;
}

.card {
  position: absolute;
  height: 217px;
  width: 150px;
}

.inactive {
  background-color: rgb(51, 51, 51);
  border: none;
}

#debug-box {
  font-size: 20px;
  position: fixed;
  top: 0;
  left: 0;
}

.main-bet, #main-bet-button {
  height: 150px;
  width: 150px;
  background-color: transparent;

}

.main-bet {
  position: absolute;
  top: 500px;
  left: 0px;
  border-radius: 100px;
  border-style: solid;
  border-width: 5px;
  border-color: orange;
}

#main-bet-button {
  position: absolute;
  border: none;
  z-index: 20;
}

#main-bet-chips {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: absolute;
  height: 90px;
  width: 150px;
}