body {
    font-family: "avenir", "montserrat", sans-serif;
    background: #343434;
    color: white;
    margin: 0;
}

h1 {
    background: #11645E;
    height: 2em;
    font-size: 4em;
    padding: 15px;
}

button {
    border: none;
    outline: none;
}

.container {
    margin: 0;
    padding: 100px;
    font-size: 20px;
    margin: 20px auto;
    max-width: 600px;
    text-align: center;
}

.choice {
    display: inline-block;
    width: 150px;
    height: 150px; //border: black solid 2px;
    border-radius: 50%;
    line-height: 100px;
    text-align: center;
    margin: 20px;
    font-size: 30px;
    color: white;
}

#playAgain {
    position: absolute;
    top: 20%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

#playAgain button {
    display: inline-block;
    height: 200px;
    width: 400px;
    text-align: center;
    line-height: 100px;
    font-size: 50px !important;
    background: rgba(255, 255, 255, 0.9);
    color: black;
    border: 8px solid black;
}

#rock {
    background: #85702D;
}

#rock:active {
    transform: scale(1.05);
    border: 2px #FFE389 solid;
}

#paper {
    background: #482058;
}

#paper:active {
    transform: scale(1.05);
    border: 2px #A569BC solid;
}

#scissors {
    background: #1B5050;
}

#scissors:active {
    transform: scale(1.05);
    border: 2px #5EAFAF solid;
}

.score div {
    display: inline-block;
}

.score div span {
    display: inline-block;
    height: 30px;
    width: 35px;

    background: white;
    color: black;
}

#winner {
    display: block;
    height: 50px;
    font-size: 30px;
}

#gameOver {
    display: block;
    height: 50px;
    font-size: 50px;
}

.hidden {
    display: none;
}
