body {
    font-family: 'Inter', sans-serif;
    background-color: #f0f4f8;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    gap: 2rem;;
    margin: 0;
    padding: 2rem;
    color: #334155;
    transition: background-color 0.3s ease;
}

.weather-container {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.weather-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

#input {
    width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    border: 1px solid #cbd5e1;
    border-radius: 9999px;
    outline: none;
    transition: all 0.3s ease-in-out;
}

#input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

#btn {
    margin-top: 1rem;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: #4f46e5;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

#btn:hover {
    background-color: #4338ca;
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.4);
}

#weather {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 1rem;
    border: 2px dashed #e2e8f0;
    color: #475569;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

#weather h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

#weather p {
    margin: 0.5rem 0;
}
