body {
    background-color: rgb(48, 48, 48);
}

.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

#rock,
#paper,
#scissors {
    width: 200px;
    height: 200px;
    margin: 0 15px;
    background-color: rgb(48, 48, 48);
    border: 4px solid white;
    color: white;
    font-size: 16px;
    display: flex;
    margin: 5px;
}

#rock {
    background-image: url(images/Rock.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

#paper {
    background-image: url(images/Paper.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

#scissors {
    background-image: url(images/Scissors.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

h1,
h2 {
    color: white;
    text-align: center;
    margin: 5px;
}

.results {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
}

p {
    margin: 15px 0 0 0;
}

.play-again-btn {
    margin: auto;
    color: white;
    background-color: black;
    border: 1px dashed white;
    width: 100px;
    height: 50px;
}

.winner {
    color: rgb(0, 175, 0);
}

#rock:hover,
#paper:hover,
#scissors:hover {
    background-color: rgb(100, 100, 100);
}