body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #ff758c, #ff7eb3);
    color: #fff;
    background-image: url("./images/back.jpg");
    background-repeat: no-repeat;
    background-size: cover;

}

.game-container {
    
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 2em;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
       
}

h1 {
    margin-bottom: 1em;
    font-size: 2.5em;
}
#rock{
    background-image: url("./images/rock.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    color: black;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
#paper{
    background-image: url("./images/paper1.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    color: black;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;

}
#scissors{
    background-image: url("./images/s.png");
    color: black;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}


.choices {
    display: flex;
    justify-content: center;
    margin: 1em 0;
}

.choice {
    margin: 0 1em;
    padding: 0.75em 1.5em;
    font-size: 2em;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
    transition: background 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.choice:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.choice i {
    pointer-events: none;
}

.result {
    margin-top: 2em;
    background: rgba(169, 132, 132, 0.2);
    padding: 1em;
    border-radius: 10px;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

}

.result p {
    font-size: 1.25em;
    margin: 0.5em 0;
}

.result span {
    font-weight: bold;
    color: #ffeb3b;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
