html {
    background-color: green;
}

.playerOneCard {
    text-align: center;
    padding: 30px;
    margin-top: 20px;
    margin-bottom: 10px;
    margin-left: 400px;
    border: solid;
    border-radius: 5px;
    height: 37px;
    width: 20px;
    background-color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.playerTwoCard {
    text-align: center;
    padding: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left:400px;
    border: solid;
    border-radius: 5px;
    height: 37px; 
    width: 20px;
    background-color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.playerName{
    margin-left: 3px;
    margin-top: 4px;
}

.addPlayer{
    background-color:#c9c9c9;
    margin-top: 4px;
}

.startGame{
    background-color: #c9c9c9;
    margin-top: 4px;
}

.drawCard{
    background-color: #c9c9c9;
    margin-top: 4px;
}

.resetGame{
    background-color: #c9c9c9;
    margin-top: 4px;
}

.addPlayer:hover{
    background-color: #878787;
}

.startGame:hover{
    background-color: #878787;
}

.drawCard:hover{
    background-color: #878787;
}

.resetGame:hover{
    background-color: #878787;
}

.playerName:hover{
    background-color: #c9c9c9;
}

.playerOneDeck{
    border: solid;
    border-radius: 5px;
    width: 125px;
    padding-left: 10px;
    background-color: #c9c9c9;
}

.playerTwoDeck{
    border: solid;
    border-radius: 5px;
    width: 125px;
    padding-left: 10px;
    background-color: #c9c9c9;
}
  
.buttons{
    height: 30px;
    background-color: black;
    border-radius: 5px;
}

.winnerOne{
    float: right;
    height: 95px;
    width: 900px;
    margin-right: 100px;
    font-size: 300%;
}

.winnerTwo{
    float: right;
    height: 95px;
    width: 900px;
    margin-right: 100px;
    font-size: 300%;
}

.warCards{
    float: left;
    border:solid;
    border-radius: 5px;
    color: black;
    background-color: red;
    height: 50px; 
    width: 60px;
    margin-left: 300px;
    padding-top: 25px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}

.hide{
    display: none;
}