html{
    font-family: verdana;
    text-align: center;
}
div.scores{
    font-family: verdana;
    color: yellow;
}
body {
  background-color: navy;
}

div.playerArea {
  position: absolute;
  top: 100px;
  height: 320px;
  width: 300px;
  
  background-color: royalblue;
  border: 3px solid gold;
  padding: 0 1em;
  border-radius:20px;
}

div#human {
  left: 290px;
}

div#computer {
  right: 290px;
}

div#roll {
  position: absolute;
  top: 450px;
  left: 100px;
  right: 100px;
  height: 100px;
  background-color: #DcDA16;
  border: 3px solid royalblue;
  border-radius: 25px;

}

div#roll:hover {
  background-color: lightblue;
}

div#roll a
{
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 100%;
  color: blue;
  font-family:impact;
  text-align: center;
  font-size: 90px;
  text-decoration: none;
}

div#roll a:hover
{
  color:  #e8e617;
}

div#stand
{
  position:absolute;
  top: 600px;
  left: 100px;
  right: 100px;
  height: 100px;
  background-color: #DcDA16;
  border: 3px solid darkred;
  border-radius: 25px;

}

div#stand:hover {
  background-color: salmon; 
}

div#stand a {
  display: block;
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 100%;
  color: red;
  font-family:impact;
  text-align: center;
  font-size: 90px;
  text-decoration: none;
}

div#stand a:hover {
  color:  #e8e617;
}

p.total {
  margin: 10px;
  font-family: verdana;
  font-weight: bold;  
  font-size: 8em;
  text-align: center;
}

p.winner {
  color: red;
}

p.loser {
  color: blue;
}
