body {
    background-color: rgb(180, 235, 235);
    font-family: "Roboto", sans-serif;
}
a{
    color: rgb(180, 114, 241);
}
.weather-app{
   background: white;
   max-width: 600px; 
   margin: 30px auto;
   box-shadow:0 30px 50px rgba(65, 50, 100, 0.08);
   border-radius: 15px ;
   padding: 30px;
}
header{
    border-bottom: 1px solid rgb(180, 235, 235);
    padding: 0 0 30px 0;
}
.search-form-input{
    background-color:rgb(180, 235, 235) ;
    border: none;
    border-radius: 5px;
    width: 80%;
    font-size: 15px;
    padding: 15px;
}
.search-form-button{
    background-color: rgb(180, 114, 241);
    padding: 15px 30px;
    border: none;
    margin-left: 5px;
    border-radius: 5px;
    color: white;
    font-size: 15px;
}
main{
    padding: 30px 0;
}
 .weather-app-data{
    display: flex;
    justify-content: space-between;
 }
 .weather-app-city{
    margin: 0;
    font-size: 38px;
    line-height: 48px;
 }
 .weather-app-details{
    font-size: 16px;
    color: rgba(39,33,66,8.4);
    line-height: 24px;
    font-weight: 500;
 }
 .weather-app-details strong {
    color: #f3346e;
 }
 .weather-app-temperature-container {
    display: flex;
 }
 .weather-app-temperature-icon{
  width: 90px;
  height: 90px;
  line-height: 88px;
  margin-top: 22px;
 }
 .weather-app-temperature{
  font-size: 88px;
  font-weight: bold;
  margin-left: 10px;
 }
 .weather-app-temperature-unit{
  margin-top: 16px;
  font-size: 28px;
 }
 .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;
    line-height: 20px;
 }
 .weather-forecast-icon{
    width:88px;
    height: 88px;
    display: block;
    margin: 0 auto;
 }
 .weather-forecast-temperatures{
    text-align: center;
    color: #f3346e;
    margin-top: 10px;
    display: flex;
    justify-content: center;
 }
 .weather-forecast-temperature{
    padding: 0 10px;
 }
footer{
    border-top: 1px solid rgb(180, 235, 235);
    padding: 30px 0 0 0;
    text-align: center;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.6);
}