body {
  background-image: linear-gradient(
    109.6deg,
    rgb(186, 138, 138) 11.2%,
    rgb(139, 192, 198) 91.1%
  );
  font-family: 
 "Oswald", sans-serif;
    
}
header{
  border-bottom: 1px solid #f9f7fe;
  padding: 0 0 30px 0;
}
footer{
  text-align: center;
  font-size: 14px;
  color: rgba(65, 50, 100, 0, 08);
  padding: 30px 000;
  border-top: 1px solid #f9f7fe;
}
main{
  padding: 30px 0;
}
.search-form{
  display: flex;
}
.weather-data{
  display: flex;
  justify-content: space-between;

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

}
.app {
  background-color: gray;
  max-width: 600px;
  margin: 45px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0, 08);
  border-radius: 20px;
  padding: 30px;
}
.search-form-input{
  background-color: beige;
  border: none;
  border-radius: 10px;
  width: 80%;
  padding: 15px 30px;
  font-size: 18px;
}
.submit{
  background-color: palevioletred;
  padding: 15px 30px;
  border: none;
  font-size: 18px;
  margin-left: 5px;
  border-radius: 6px;
  color: white;
}
.weather-details{
  font-size: 24px;
  line-height: 20px;
  font-weight: 500;
  color: rgba 39 33 66 0.4;
}
.weather-details strong{
  color: #f65282;
}
.weather-temperature{
  font-size: 88px;
  font-weight: bold;
  margin-left: 18px;
  line-height: 88px;
}

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

.icon{
  height: 88px;
  width: 88px;
  
}
.weather-unit{
  font-size: 28px;
  margin-top: 6px;
}

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

.weather-forecast-date{
  text-align: center;
  color: #1d5791;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}
.weather-forecast-icon{
  height: 88px;
  width: 88px;
  display: block;
  margin: 0 auto;
}
.weather-forecast-temperatures{
  text-align: center;
  color: #eae6f4;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.weather-forecast-temperature{
  padding: 0 10px;
}