body{background: linear-gradient(to top, #dfe9f3 0%, white 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: "Oswald", sans-serif;
 
}
a{
    color:#a5bdfd;
}

.forecast-app{
    background-color:white ;
    max-width: 500px;
    margin: 80px auto;
    padding: 30px;
    border-radius: 15px;
    box-shadow:#F5F1FE ;



}
header{
 
   border-bottom: 1px solid #F5F1FE;
    padding: 0 0 20px 0;
}
.input{
    background-color: #F5F1FE;
    border: none;
    border-radius: 5px;
    width: 60%;
    padding: 25px;
    font-size: 20px;
}
.search-button{
    background-color:#a5bdfd;
    border-color: rgb(192, 174, 237);
    border-radius: 5px;
    width: 170px;
    font-size:20px;
    padding: 25px;
    font-size: 20px;
    color:white;
    font-weight: bolder;
}
main{
    padding: 60px 0;
}
.forecast-data{
display:flex;
justify-content: space-between;
}
.location{
  margin:0;
  font-size: 20px;
  line-height:48px;  
}
.location-details{
    font-size:15px;
    line-height: 20px;
    color:#a5bdfd
}
.location-temp{
    font-size: 68px;
    font-weight: bold;
}
.temp-icon{
   font-size: 30px; 
}
.weather-forecast{

    display: flex;
    justify-content: space-around;
    margin-top:30px;
}
.weather-forecast-date{
    text-align: center;
    color: gray;
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px; ;
}

.weather-forecast-icon{
    font-size: 38px;
    text-align: center;
}
.weather-forecast-temps{
    text-align: center;
    color:rgb(75, 138, 255);
    display: flex;
    justify-content: center;
    margin-top:10px;
}
.weather-forecast-temp{
    padding:0 10px;
}

footer{
    border-top:1px solid #F5F1FE;
    padding: 30px 0 0 0 ;
    text-align: center;
    font-size: 10px;
    color:#838589;
}
