body{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align: center;
    background-color: rgb(52, 97, 139);
    margin: 0;
    padding: 20px;
}
#instructions, #play-game, #choices, #score, #result {
    font-size: 1.2em;
    margin-bottom: 20px;
    background-color: aliceblue;
    width: 25%;
    padding: 10px;
    border-radius: 10px;
    margin: 20px auto;
}
h1 {
    color: white;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    border: none;
    border-radius: 5px;
}

#rock{
    background-color: rgb(160, 2, 2);
    color: white;
}
#paper{
    background-color: rgb(2, 147, 2);
    color: white;
}
#scissors{
    background-color: rgb(2, 2, 140);
    color: white;
}
#play{
    background-color: rgb(49, 126, 171);
    color: rgb(252, 249, 249);
}
#play-again {
    background-color: rgb(49, 126, 171);
    color: white;
}
#play:hover, #rock:hover, #paper:hover, #scissors:hover, #play-again:hover {
    opacity: 0.8;
}