/* Background & Font */
body {
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
    color: white;
    font-family: 'Poppins', sans-serif;
}

/* Cards */
.card {
    background: white;
    border-radius: 10px;
    max-width: 500px;
    margin: auto;
    width: 90%;
}

/* Input & Button */
input {
    font-size: 16px;
    padding: 12px;
}

button {
    font-size: 18px;
    padding: 12px;
    transition: transform 0.2s;
}

button:hover {
    transform: scale(1.05);
}

/* Result Display */
#result-container {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 24px;
    }

    .card {
        padding: 20px;
    }

    button {
        font-size: 16px;
        padding: 10px;
    }
}
