*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    background: url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80") no-repeat center center fixed;
    background-size: cover;
    /* background-color: #ffffff; */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
}

.content{
    padding: 20px;
    background-color: #f0e9e925;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    width: 400px;
    height: 300px;
}
h1{
    margin-bottom: 20px;
    font-size: 60px;
    color: #333;
}


.buttons{
    padding: 20px;
    font-size: 50px;
    display: flex;
    gap: 20px;
}

button{
    padding: 10px;
    font-size: 50px;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    transition: opacity 0.3s ease;

}
button:hover{
    opacity: 0.8;
}
button:active{
    transform: scale(0.95);
}


#stone {
    background-color: #8c00fe;
    color: white;
}

#paper {
    background-color: #1e90ff;
    color: white;
}
#scissors {
    background-color: #ff4500;
    color: white;
}

.result{
    margin-top: 20px;
    font-size: 30px;
    color: #333;
}

.your-score span {
    font-weight: bold;
    color: #ff4500;
}

.machine-score span {
    font-weight: bold;
    color: #1e90ff;
}

.result {
    text-align: center;
    margin-top: 00px;
    font-size: 24px;
    color: #fff;
    background-color: #ff4500;
    
}

