body{
    background-color: #f9f7fe;
    font-family: "Big Shoulders", sans-serif;

}

header{
    border-bottom:1px solid #f9f7fe;
    padding: 0 0 30px 0;
}

a{
    color: rgb(13, 100, 103);
}

.weather-app{
    background-color: white;
    max-width: 600px;
    margin: 45 auto;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
}

main{
    padding: 30px 0;
}

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

.search-button{
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    margin-left: 5px;
    background: cadetblue;
    color: white;
    font-size: 16px;
}
.weather-data{
    display: flex;
    justify-content: space-between;
}
.weather-city{
    margin: 0;
    font-size: 38px;
    line-height: 48px;
}
.weather-details{
    font-size: 16px;
    line-height: 24px;
    color: rgba(39, 33, 66, 0.4);
}

strong {
    color: salmon;
}

.waether-temperature{
    display: flex;
}

.weather-icon{
    width: 88px;
    height: 88px;
}

.weather-temp{
    font-size: 88px;
    line-height: 88px;
    font-weight: bold;
}

.weather-unit{
    margin-top: 16px;
    font-size: 28px;
}
.forecast{
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}
.forecast-date{
    text-align: center;
    line-height: 20px;
    margin-top: 10px;
    font-size: 16px;
    color: rgba(39, 33, 66, 0.4);
}
.forecast-icon{
    width: 88px;
    height: 88px;
    display: block;
    margin: 0 auto;
}
.forecast-temps{
    display: flex;
    justify-content: center;
    text-align: center;
    color: salmon;
}

.forecast-temp{
    padding: 0 10px;
}

footer{
    border-top:1px solid #f9f7fe;
    padding: 30px 0 0 0;
    text-align: center;
    font-weight: 500;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.6);
}