body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: #f4f4f4;
    padding: 20px;
}
.container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(31, 27, 27, 0.1);
    max-width: 400px;
    margin: auto;
    /* text-align: center; */
}
input {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
}
button {
    padding: 10px 15px;
    border: none;
    background: #007BFF;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bolder;
}
button:hover {
    background: #0056b3;
}
.weather-result {
    margin-top: 20px;
}