/* style.css */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-image: url('https://images.unsplash.com/photo-1512115865272-2a32ea6d3e93'); /* Galaxy in the universe */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    background-color: rgba(255, 240, 245, 0.85); /* Slight transparency */
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    width: 350px;
}

h1.question {
    color: #d63384;
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.buttons {
    margin: 20px 0;
}

button {
    background-color: #ff69b4;
    color: white;
    border: none;
    padding: 15px 30px;
    margin: 10px;
    font-size: 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background-color: #ff85c1;
}

.no-btn {
    /* (assuming incomplete, you can finish it if needed) */
}
