body{
    background-color: #f9f7fe;
}

header{
    border-bottom: 1px solid #ddd;
    padding: 0 0 30px 0;
}

footer{
    border-top: 1px solid #ddd;
    padding: 30px 0 0 0;
    text-align: center;
    font-size: small;
    color: rgba(0,0,0,0.6);
}

a{
    color: #885df1;
    text-decoration: none;
}

main{
    padding: 30px 0;
}

.weather-app-city{
    margin: 0;
    font-size: 38px;
    line-height: 48px;

}

.weather-app-details{
    font-size: 16px;
    color: rgba(39,33,66,0.4);
    line-height: 24px;
    font-weight: 500;
}

.weather-app-details strong{
    color: #f65282;
   
}
.weather-app-temperature{
    display: flex;
    
}
.weather-app-icon{
  width: 88px;
  height: 88px;
 
}
.weather-app-value{
    font-size: 88px;
    font-weight: bold;
    margin-left: 10px;
    line-height: 88px;
}
.weather-app-unit{
    margin-top: 6px;
    font-size: 28px;
    font-weight: 500
   
   
}



.weather-app{
    background: white;
    max-width: 600px;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    padding: 20px;

}

.search-form-input{
    width: 80%;
    padding:15px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #f9f7fe;
}
.search-form-button{
    padding: 15px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    background-color: #885df1;
    color: white;
    cursor: pointer;
    margin-left: 5px;
}

.weather-app-data{
    display: flex;
    justify-content: space-between;
}

.weather-forecast{
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.weather-forcast-date{
    text-align: center;
    color: rgba(39,33,66,0.4);
    font-size: 16px;
    margin-bottom: 10px;

}

.weather-forcast-icon{
    width: 66px;
    height: 66px;
    display: block;
    margin: 0 auto;
}

.weather-forcast-temp {
    padding: 0 10px;
    
}
.weather-forcast-temps{
    text-align: center;
    display: flex;
    margin-top: 10px;
    color: #f65282;
    justify-content: center;
}