body{
    font-family: Arial, sans-serif;
    background: linear-gradient(to right, #4facfe, #00f2fe);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container{
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 300px;
}

input{
    padding: 10px;
    width: 80%;
    margin-bottom: 10px;
}

button{
    padding: 10px 20px;
    background: #0077ff;
    color: white;
    border: none;
    cursor: pointer;
}

button:hover{
    background: #0055cc;
}

#weatherResult{
    margin-top: 20px;
}
