body{
    background-color: antiquewhite;
   font-family: "Roboto" ,sans-serif; 
}
.weather-app{
    background-color: white;
    margin: 30px auto;
    padding: 20px;
    max-width: 600px;
    border-radius: 10px;
    align-content: center;
    box-shadow: rgba(65, 50, 100, 0.08) 0px 30px 50px 0px;
    
}
header{
    border-bottom: #f9f7fe;
    padding:  30px ;
}
main{
    padding: 0 30px;
}
.search-form-input{
    background-color: #f9f7fe;
    border: none;
    border-radius: 6px;
    width: 80% ;
    padding: 20px;
    font-size: 16px;
}
.search-form-button{
    background-color: blueviolet;
    padding: 20px;
    border-radius: 6px;
    border: none;
   
}
footer{
    border-top: 1px ,solid, #f9f7fe;
    padding: 30px 0 0 0;
    text-align: center;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
}
.weather-app-data{
    display: flex;
    justify-content: space-between;
}
.weather-app-city{
    margin: 0;
    font-size: 38px;
    line-height: 40px;
}
.weather-app-details{
    font-size: 16px;
    line-height: 24px;
    color: rgba(39,33,66, 0.4);
    font-weight: 500;
}
.weather-app-details strong{
    color: #f65282;
}
.weather-app-temperature-container{
    display: flex;
}
.weather-app-icon{
    width: 88px;
    height: 88px;
    margin-left: 10px;
}
.weather-app-temperature-value{
    font-size: 88px;
    margin-left: 10px;
    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: 20px;
}

.weather-forecast-day {
    display: flex;
    flex-direction: column;
    align-items: center;
     }

   

.weather-forecast-date{
    text-align: center;
    font-size: 14px;
    color: rgba(39,33,66, 0.4);
    line-height: 20px;
    margin-bottom: 10px;}
     
.weather-forecast-icon{
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto;
}

.weather-forecast-temperatures{
    text-align: center;
    margin-top: 10px;
    color: #f65282;
    display: flex;
    justify-content: center;
}
.weather-forecast-temperature{
    padding: 0 10px;
}

   