body {
    font-family: Arial, sans-serif;
    background: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.weather-container {
    background: rgb(255, 255, 255);
    padding: 20px;
    border-radius: 8px;
    width: 500px;
    height: 400px;
    text-align: center;
}

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

button {
    padding: 15px 20px;
    cursor: pointer;
    background-color: #2196f3;
    color: white;
    border: none;
    border-radius: 4px;
}

button:hover {
    background-color: #1976d2;
}

#weatherResult {
    margin-top: 15px;
}

#errorMessage {
    color: rgb(0, 0, 0);
    margin-top: 10px;
}
