body {
    background-color: #f4f4f4;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin-top: 60px;
    font-weight: bold;
}

p {
    font-size: 1.2rem;
    margin: 1rem 0;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

button {
    font-size: 3rem;
    width: 100px;
    height: 100px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: white;
    transition: transform 0.2s ease;
}

button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

#rock {
    background-color: red;
}

#paper {
    background-color: blue;
}

#scissors {
    background-color: green;
}

#result {
    font-weight: bold;
    font-size: 1.2rem;
}

#user-score {
    color: blue;
    font-weight: bold;
}

#computer-score {
    color: red;
    font-weight: bold;
}