*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', Arial, sans-serif;
}

body{
    height: 100vh;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#stone{
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 150px;
}


#winner{
    font-size: 28px;
    font-weight: 600;
    color: #00ffcc;
    margin-bottom: 100px;
    
}

#main{
    height: 320px;
    width: 900px;
    border-radius: 16px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.game{
    display: flex;
    gap: 35px;
}

img{
    height: 200px;
    width: 220px;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

img:hover{
    transform: scale(1.15);
}