body{
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(to right, #74ebd5, #9face6);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.weather-container{
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 300px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

button{
    padding: 10px 15px;
    border: none;
    background: #4a6cf7;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

button:hover{
    background: #364fc7;
}

.result{
    margin-top: 15px;
    font-size: 16px;
}