body {
    background-color: #f9f7fe;
    font: sans-serif;
}

a{
    color: #885df1;
}

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

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


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

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

}  

main{
    padding: 30px 0;
    
}

.weather-app-data{
    display: flex;
    justify-content: space-between;
}
.weather-app-details{
    font-size: 16px;
    color: rgba(39, 33, 66, 0.4);
    margin: 0;
    line-height: 24px;
    font-weight: 500;
}



.weather-app-details strong{
    color: #f65282;
}

.weather-app-temperature-container{
    display: flex;
   
}

.weather-app-icon {
    font-size: 60px;
    margin: 0;
}

.weather-app-temperature{
    font-size: 88px;
    font-weight: bold;
    margin: 0;
    
}
.weather-app-unit{
    font-size: 28px;
    margin-top: 5px
}
.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;
    margin-bottom: 10px;
    line-height: 20px;
}

.weather-app-city{
    font-size: 38px;
    margin: 0;
    line-height: 48px;
}

.weather-forecast-icon{
    font: 38px;
    text-align: center;
}
    


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

}



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

