body {
    font-family: Arial, sans-serif;
    text-align: center;
}

h1 {
    color: #333;
}

p {
    margin-bottom: 20px;
}

button {
    padding: 10px 20px;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
}

.rock,
.paper,
.scissor {
    font-size: 24px;
    padding: 15px 30px;
    margin: 10px;
    background-color: #ff00aa;
}

.rock:hover,
.paper:hover,
.scissor:hover {
    background-color: #b84892;
}

#computerScore,
#userScore {
    font-size: 24px;
    margin-top: 20px;
}

#result {
    font-size: 24px;
    margin-top: 20px;
}

#finalResult {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.ScoreContainer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.computer,
.user {
    font-size: 18px;
    margin-top: 10px;
}

.computer h2 {
    color: #8b0000;
}

.user h2 {
    color: #006400;
}

.Replay {
    background-color: #007bff;
    display: none;
}

.Replay:hover {
    background-color: #0069d9;
}

button:hover,
button:focus {
    background-color: #b84892;
}

button:focus {
    outline: none;
}

button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}