header{
    border-bottom: 1px solid #f9f7fe;
    padding:0 0 30px 0;
}
body {
    background-color: #f9f7fe; 
    font-family: "Roboto", sans-serif;
}
a{
    color: #885df1;
}
.weather-app{
    background-color:white;
    max-width: 600px;
    margin: 45px auto;
    box-shadow: (0 30px 50px rgba(65, 50, 100, 0.08));
    border-radius: 18px;
    padding: 30px;
}

.input{
    background-color: #f9f7fe;
    border:none;
    border-radius: 6px;
    width: 80%;
    padding: 15px 20px;
    font-size: 16px;
}

.button{
    background-color: #885df1;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    color: white;
    margin-left: 5px;
    font-size: 15px
}

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

}
main{
    padding: 30px 0;

}
.city{
    margin: 0;
    font-size: 38px;
    line-height: 48px;
}
.details{
    font-size: 16px;
    line-height: 20px;
    color: rgba(39, 33, 66, 0.4);
    font-weight: 500;
    line-height: 24px;
}

.details strong{
    color: #f65282;
}
.weather-forecast{
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}
.weather-forecast-date{
    text-align: center;
    font-size: 16px;
    color: rgba(39, 33, 66, 0.4);
    line-height: 20px;
}

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

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

.temperature-container{
    display:flex;
}
.temperature{
    font-size: 88px;
    font-weight: bold;
    line-height: 88px;
}
.weather-app-icon{
    
    width: 88px;
    height: 88px;
}
.unit{
    margin-top:10px;
    font-size: 16px;
}
footer{
    border-top: 1px solid #f9f7fe;
    font-weight: 500;
    padding: 30px 0 0 0;
    text-align: center;
    font-size: 13px;
    color:  rgba(0, 0, 0, 0.6);
}
