body {
    background: #f5f7fb;
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 40px;
}

.weather-app {
    background: white;
    max-width: 700px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.forecast {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.forecast-day {
    text-align: center;
}
footer {
    margin-top: 30px;
}
.weather-data {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.weather-icon {
    font-size: 56px;
}
.temperature {
    font-size: 80px;
    font-weight: bold;
}
.unit {
    font-size: 28px;
    vertical-align: top;
}
#search-input {
    padding: 10px 14px;
    font-size: 15px;
    border-radius: 8px;
    
}

#search-button {
    padding: 10px 18px;
    font-size: 15px;
    border-radius: 8px;
  
}
#search-input {
    padding: 10px 14px;
    font-size: 15px;
    border-radius: 8px;
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #ddd;
}

#search-button {
    padding: 10px 18px;
    font-size: 15px;
    border-radius: 8px;
    background-color: #885df1;
    color: white;
    border: none;
}