* {
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 3.5rem;
    color: hsl(0, 0%, 20%);
}

.choices {
    margin: 30px;
}

.choices button {
    font-size: 7.5rem;
    min-width: 160px;
    margin: 0 10px;
    border-radius: 20px;
    padding: 20px;
    cursor: pointer;
    transition: background-color 0.5s ease;
}

#rock {
    background-color: hsla(0, 0%, 50%, 0.695);
}

#rock:hover {
    background-color: hsla(0, 0%, 65%, 0.695);
}

#rock:active {
    background-color: hsla(0, 0%, 80%, 0.695);
}

#paper {
    background-color:hsla(30, 59%, 50%, 0.534);
}

#paper:hover {
    background-color:hsla(30, 59%, 65%, 0.534);
}

#paper:active {
    background-color:hsla(30, 59%, 80%, 0.534);
}

#scissors {
    background-color: hsla(0, 100%, 50%, 0.371);
}

#scissors:hover {
    background-color: hsla(0, 100%, 65%, 0.371);
}

#scissors:active {
    background-color: hsla(0, 100%, 80%, 0.371);
}

#choice-displays {
    font-size: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
}

#player-display, #computer-display {
    text-align: left;
}

#player-choice, #computer-choice {
    text-align: right;
}

#result-display {
    font-size: 5rem;
    margin: 30px 0;
}

#score-displays {
    border: 2px solid black;
    border-radius: 20px;
    font-size: 2.5rem;
    padding: 20px;
    display: flex;
    gap: 5px;
}

#player-score {
    color: green;
}

#computer-score {
    color: red;
}

.apply-winning-text {
    color: green;
}

.apply-losing-text {
    color: red;
}