
body{
    background:linear-gradient(130deg, #f9f7fe, #5daeff);
    font-family: "Merriweather", serif;
    font-weight: 300;
    font-style:normal
}
a{
    color:#885df1;
}
.weather-app{
    background:linear-gradient(130deg, #f9f7fe, #5daef1);
    max-width:600px;
    margin:80px auto;
    box-shadow: 0 30px 50px rgba(60, 59, 100, 0.07);
    border-radius: 16px;
    padding:30px;
}

header{
 border-bottom: 1px solid none;
 padding: 0 0 30px 0;

}
main{
    padding:30px 0;
}
.search-form-input {
    background-color: #f9f7fe;
    border:none;
    border-radius: 6px;
    width:80%;
    font-size:16px;
    padding:16px 20px;
}
.search-form-button{
    background:#5daef1;
    padding:15px 30px;
    border:none;
    font-size:16px;
    margin-left:5px;
    border-radius:6px;
    color:white;
}
.weather-app-data{
display:flex;
justify-content: space-between;

}

.weather-app-city{
    margin:0;
    font-size: 38px;
    line-height: 48px;
}
.weather-app-details{
 font-size:15px;
 line-height: 24px;
 color:rgba(39,33,66,0.4);
 font-weight: 300;
}
.weather-app-details strong{
    color:black;
}
.temperature{
    display: flex;
}
.weather-app-temperature{
font-size: 80px;
font-weight: bold;

}
.weather-app-icon{
 width:280px;
  margin-top: -45px;
}
.weather-app-unit{
    margin-top: 16px;
    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-icon {
    width: 88px;
    height:80px;
    display:block;
    margin:0 auto;
  }
  .weather-forecast-temperatures {
    text-align: center;
    color: #8352f6;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }
  .weather-forecast-temperature {
    padding: 0 2px;
  }

footer{
    margin-top:-80px;
    border-top:1px solid none;
    padding: 5px 0 0 0 ;
    text-align: center;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.7);
}
