body{
    background-color: #f3f0fc;
}
header{
    border-bottom: 1px solid #f3f0fc;
    padding: 0 0 28px 0;
}
main{
    margin: 8px 0;
}
.weather-details{
    font-weight: 600;
    color:#F65282 ;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
h1{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 36px;
}
p{
    color:#a39fb4 ;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif ;
}
.container{
   background-color: white; 
   margin: 36px auto;
   max-width: 600px;
   padding: 20px;
   border-radius: 16px;
}
.search-input{
    padding: 16px 20px;
    border: none;
    background-color: #f3f0fc;
    border-radius: 8px;
    font-size: 16px;
    width: 80%;
    font-size: 16px;
}
.search-button{
    padding: 16px 28px;
    border: none;
    background-color: #6e3ab3;
    color: white;
    border-radius: 8px;
    margin-left: 8px;
    font-size: 16px;
}
.weather-data{
    display: flex;
    justify-content: space-between;
    align-items: center;  
    padding: 8px; 
}
.weather-forecast {
    display: flex;
    justify-content: space-around;
}
.weather-forcast-day{
    text-align: center;
    color:#27214266;
    font-size: 16px;
    margin-top: 10px;
    line-height: 20px;
}
.weather-forecast-icon{
    text-align: center;
    width:88px;
    height: 88px;
}
.weather-forecast-temp{
    display: flex;
    justify-content: center;
}
.weather-forecast-temperature{
    padding: 6px;
    color: #F65282;
}
.temp-details{
    display: flex;
}
.temp-value{
    font-size: 88px;
    line-height: 88px;
    font-weight: 600;
    vertical-align: top;
}
.temp-icon{
    font-size: 54px;
    vertical-align: top;
}
.temp-unit{
    vertical-align: top;
    font-size: 28px;
    margin-top: 10px;
    
}
footer{
border-top: 1px solid #f3f0fc;
    padding: 28px 0 0 0;
    text-align: center;
    font-size: 12px;
    color:#969697;
}