body {
  background-color: green;
}

div.playerArea {
  position: absolute;
  top: 100px;
  height: 320px;
  width: 300px;
  
  background-color: aqua;
  border: 3px solid white;
  padding: 0 1em;
  border-radius:20px;
}

div#human {
  left: 100px;
}

div#computer {
  right: 100px;
}

div#roll {
  position: absolute;
  top: 125px;
  left: 475px;
  right: 475px;
  height: 100px;
  background-color: orange;
  border: 3px solid white;
  border-radius: 25px;

}

div#roll:hover {
  background-color: yellow;
}

div#roll a
{
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 100%;
  color: #004400;
  text-align: center;
  font-size: 90px;
  text-decoration: none;
}

div#roll a:hover
{
  color: blue;
}

div#stand
{
  position:absolute;
  top: 300px;
  left: 475px;
  right: 475px;
  height: 100px;
  background-color: orange;
  border: 3px solid white;
  border-radius: 25px;

}

div#stand:hover {
  background-color: yellow;
}

div#stand a {
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 100%;
  color: #004400;
  text-align: center;
  font-size: 90px;
  text-decoration: none;
}

div#stand a:hover {
  color: blue;
}

p.total {
  margin: 10px;
  font-weight: bold;  
  font-size: 8em;
  text-align: center;
}

p.winner {
  color: black;
}

p.loser {
  color: black;
}