body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: linear-gradient(135deg, #eb74b6, #dc8598);
    color: #333;
    margin: 0;
    padding: 20px;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

p {
    font-size: 1.2rem;
}

.choices {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    gap: 20px;
}

.choice {
    background: rgb(166, 221, 234);
    border: 2px solid #8bbaca; 
    border-radius: 15px;
    padding: 20px 40px;
    font-size: 1.2rem;
    cursor: pointer;

  
    box-shadow: 0 4px 15px rgba(44, 65, 86, 0.3);

    transition: transform 0.2s, background 0.3s, box-shadow 0.3s;
}

.choice:hover {
    background: rgb(140, 210, 230);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: scale(1.05);
}


.result {
    font-weight: bold;
    font-size: 1.5rem;
    margin-top: 20px;
}
