body {
  background-color: #5d82a2;
      font-family: "Montserrat", sans-serif;
        font-optical-sizing: auto;
        font-weight: thin;
        font-style: thin;

}

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

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

}

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

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

main{
  padding: 10px 0;
}

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

.weather-app-data{
    display: flex;
    justify-content: space-between;
}

.weather-details{
   font-size: 16px;
   color: rgba(26, 22, 44, 0.4);
   line-height: 24px;
   font-weight: 500;
}

.weather-details strong {
  color: rgb(126, 85, 221);
}
.weather-app-container{
  display: flex;
}

.weather-temperature{
  font-size: 80px;
  font-weight: bold;
  margin-left: 10px;
}

.weather-unit{
  margin-top: 10px;
  font-size: 28px;
}

.weather-app-icon{
  width: 80px;
  height: 80px;
  position: relative;
  top: 10px;
}

.weather-forecast{
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.weather-forecast-date {
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  color: rgba(26, 22, 44, 0.4);
  margin-bottom: 5px;
}

.weather-forecast-icon{
  width: 48px;
  height: 48px;
  display:block;
  margin: 0 auto;

}

.weather-forecast-temperatures{
  text-align: center;
  color:rgb(126, 85, 221) ;
  display: flex;
  justify-content: center;
  margin-top: 8px;
  padding-bottom: 40px;
}

.weather-forecast-temperature{
  padding: 0 8px;

}

footer{
  border-bottom: 1px solid #cfcfcf;
  padding: 0 0 30px;
  text-align: center;
  font: 8px;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 300;
}