body{
    background-color: #FFDEDE;
     font-family: "Roboto", sans-serif;
}

a{
    color: #FF0B55;
}

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

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

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

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

.weather-app-data{
    display: flex;
    justify-content: space-between;
}
main{
    padding: 30px 0;
}

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

.weather-app-details{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: rgba(39, 33, 66, 0.4);
}

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

.container{
    display: flex;
}

.weather-app-temperature{
    font-size: 88px;
    font-weight: 600;
    line-height: 88px;
   
}

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

.weather-app-units{
    margin-top: 16px;
    font-size: 28px;
}

.weather-forecast {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap; /* allows wrapping on small screens */
}

.weather-forecast-day {
  display: flex;
  flex-direction: row !important;
  text-align: center;
}

.weather-forecast-day:nth-child(2) {
  margin-left: 20%;
}


.weather-forecast-date{
    text-align: center;
    color: rgba(39, 33, 66, 0.4);
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
}

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

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

.weather-forecast-temperature{
    padding: 0 10px;
}

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