body {
    font-family: Arial, Helvetica, sans-serif;
    background: linear-gradient(to right, turquoise, lavender);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

#weather-container {
    background: whitesmoke;
    width: 300px;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
}

#city-input {
    padding: 10px;
    width: 200px;
    border: 1px solid lightgray;
    border-radius: 5px;
}

#search-button {
    padding: 10px;
    border: none;
    background-color: lightblue;
    color: white; 
    border-radius: 5px;
}