
@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: linear-gradient(-45deg, #1e3c72, #2a5298, #6a11cb, #2575fc);
    background-size: 400% 400%;
    animation: gradientAnimation 10s ease infinite;
    color: white;
    padding: 20px;
}
.container {
    max-width: 400px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    /* transition: transform 0.3s ease-in-out; */
}
/* .container:hover {
    transform: scale(1.05);
} */
input {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
    text-align: center;
    outline: none;
}
button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: #ff7e5f;
    color: white;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    margin: 5px;
}
button:hover {
    background: #ff4e50;
}
.weather-info {
    margin-top: 20px;
    font-size: 1.2em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.weather-icon {
    width: 80px;
    height: 80px;
}
.error-message {
    color: yellow;
    margin-top: 10px;
}