/* CSS file for Rock-Paper-Scissors game */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1506748686214-e9df14d4d9d0') no-repeat center center/cover;
    color: white;
    text-align: center;
}

div {
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    max-width: 400px;
    width: 100%;
}

h1 {
    margin: 10px 0;
    font-size: 28px;
    text-transform: uppercase;
}

h2,
h3 {
    margin: 10px 0;
    font-size: 18px;
}

button {
    font-size: 24px;
    background: linear-gradient(to right, #ff7e5f, #feb47b);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
    transform: scale(1.1);
    box-shadow: 0px 6px 15px rgba(255, 126, 95, 0.7);
}

button:active {
    transform: scale(1);
    box-shadow: none;
}

#Result {
    font-size: 24px;
    font-weight: bold;
    margin-top: 20px;
    color: #ffd700;
}

#Score {
    font-size: 22px;
    color: #00ffcc;
}
