* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: black;
    color: white;
}

.weather-container {
    text-align: center;
    max-width: 400px;
    height: 400px;
    width: 100%;
    background-color: black;
    padding: 20px;
}

h1 {
    margin-bottom: 20px;
}

.search-container {
    margin-bottom: 20px;
}

#city-input {
    padding: 10px;
    border: 1px solid white;
    border-radius: 5px;
    background-color: black;
    color: white;
    width: calc(100% - 80px);
    font-size: 16px;
}

#search-button {
    padding: 10px;
    border: none;
    background-color: white;
    color: black;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
}

#search-button:hover {
    background-color: #e0e0e0;
}

.weather-info p {
    margin: 10px 0;
}

#error-message {
    color: red;
    font-weight: bold;
}
