@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #6d28d9, #3b82f6);
}

.container {
    text-align: center;
    color: white;
}

.container h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #facc15;
}

.container h1 span {
    color: white;
}

/* ===== Input Section ===== */
.input-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 20px;
    width: 320px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 2rem auto;
}

.input-box input {
    padding: 10px;
    border-radius: 6px;
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 500;
    width: 200px;
    /* fixed width so it looks neat */
    color: #333;
}

.input-box button {
    background: #facc15;
    border: none;
    padding: 12px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: black;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
}

.input-box button:hover {
    background: #eab308;
}

/* ===== Result Section ===== */
.result {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}