body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 75vh;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    margin: 30px;
    padding: 30px;
}

.container {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    backdrop-filter: blur(10px);
    margin: 20px;
}

h2 {
    margin-bottom: 10px;
}

input {
    padding: 10px;
    font-size: 16px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    width: 80%;
    text-align: center;
    outline: none;
}

button {
    padding: 12px 18px;
    font-size: 16px;
    font-weight: bold;
    background: #ff9f43;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out, background 0.3s;
}

button:hover {
    background: #ff6f00;
    transform: scale(1.05);
}

button:active {
    transform: scale(0.95);
}

#result {
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
    color: black;

}

#result.show {
    opacity: 1;
    transform: translateY(0);
}