*{
    padding: 0;
    margin: 0;
    
}
body{
    background-color:#f9f7fe ;
    display: flex;
    justify-content: center;
    margin-top: 40px;
    font-family: sans-serif;
}
.weatherapp{
    background-color: white;
    width: 600px;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
}
header form{
    padding: 0 10px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(151, 144, 144, 0.11);
}
#Search-input{
    background-color: #f9f7fe;
    border: none;
    width: 80%;
    font-size: 16px;
    border-radius: 4px;
    padding: 15px;
}
#search-button{
    padding: 15px 25px;
    margin-left: 5px;
    font-size: 16px;
    border-radius: 4px;
    border: none;
    background-color: #885df1;
    color: white;
}
.temperature-container{
    display: flex;
    justify-content: space-between;
}
.city{
    font-size: 38px;
    margin: 25px 0;
}
.humidity-data{
    color: rgba(9, 9, 9, 0.397);
    margin-bottom: 50px;
    line-height: 25px;
    font-weight: 550;
}
.humidity{
    color:#f65282;
}
.temperature {
    display: flex;
    justify-content: center; 
    align-items: center;
}
.weather{
    font-size: 45px;
    margin-top: 10px;
}
.temp{
    font-size: 85px;
    font-weight: bold;
}
.celsius{
    font-size: 30px;
    margin-bottom: 45px;
}
.forecast-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.forecast-day{
    text-align: center;
    color: rgba(39, 33, 66, 0.4);
    margin: 15px 0;
    font-size: 16px;
}
.forecast-icon{
    text-align: center;
    font-size: 30px;
    margin: 15px 0;
    font-size: 30px;
}
.forecast-temperature{
    display: flex;
    color: #f65282;
    margin: 0 auto;
}
.forecast-temperature-first{
    margin:0 10px;
}
.links{
    text-align: center;
    margin-top: 30px;
    padding: 20px 0;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.578);
    border-top: 1px solid rgba(151, 144, 144, 0.11);
}
.links a{
    color: #885df1;
    margin: 10px 0;
}