body{
    background-color: #F9F7FE;
    font-family: "Roboto", sans-serif;
    display: block;
    margin: 8px;
}

.weather-app {

    background-color: #FFFFFF;
    max-width: 600px ;
    margin: 45px auto;
    padding: 30px;
    box-shadow:0 30px 50px rgba(65, 50, 100, 0.08);
    border-radius: 16px;
    display: block;

    
}
a{
    color: #885DF1;;
}
header{
    border-bottom: 1px solid #F9F7FE;
    padding: 0 0 30px 0;
}
#search-input {
   
   background-color: #F9F7FE;
   border: none;
   border-radius: 6px;
   width: 80%;
    padding: 15px 20px;
    font-size: 16px;
}
#search-form-button {
    background-color:#885DF1;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 15px 30px;
    font-size: 16px;
    margin-left: 5px;
    border-radius: 6px;
}
main{
    padding: 30px 0;
    display: block

}
.weather-app-city {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
}
.weather-app-data {
    display: flex;
    justify-content: space-between;
}
#time,#description,#humidity,#wind {
    color: rgba(39, 33, 66, 0.4)

} 
    
p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}
footer{
    border-top: 1px solid #F9F7FE;
    padding: 30px 0 0 0;
    text-align: center;
    font-size: 13px;
    color: rgba(0,0,0,0.6)
}
p.weather-app-data {
    font-size: 16px;
    color: rgba(39, 33, 66, 0.4);
    line-height: 24px;
    font-weight: 500;
    display: flex;
    justify-content:space-between ;
}
strong.weather-app-data{
     display: flex;
    justify-content:space-between ;
}

.weather-app-description strong {
  color: #f65282;
}
#humidity,#wind{
    color: #f65282;

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


.weather-app-container {
    display: flex;
}
.weather-app-temperature-container {
    display: flex;
}
#icon{
  width: 88px;
  height: 88px;
}

#temperature {
  font-size: 88px;
  line-height: 88px;
  font-weight: bold;
   
}
.weather-app-unit {
  margin-top: 6px;
  font-size: 28px;
} 
 .weather-forecast{
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}
.weather-forecast-date{
    text-align: center;
    color: rgba(39, 33, 66, 0.4);
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
}
.weather-forecast-day{
   
    justify-content: space-between;
    margin-top: 30px;
}

.weather-forecast-icon{
   width: 88px;
   height: 88px;
    display: block;
    margin: 0 auto ;
    
    
}
/* the temperature for each day in the forecast */
.weather-forecast-temprature{
    padding: 0 10px;
    
    
}

/* all the temperatures in the forecast */
.weather-forecast-temperatures{
    display: flex;
    text-align: center;
    color: #f65282;
    justify-content: center;
    margin-top: 10px;
}