body{
  background:#e7eaf6;
  font-family: "Geologica", serif;
  

}
header{
  border-bottom: 1px solid #e7eaf6;
  padding:0 0 30px 0;
}
main{
  padding: 15px;
}
footer{
  border-top: 1px solid #e7eaf6;
  padding: 30px 0 0 ;
  text-align: center;
  font-size: 12px;
  color:rgba(0,0,0,0.3)
}
a{
  color:#4D55CC;
}
.weather-app{
  max-width: 800px;
  margin: 45px auto;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 30px 50px rgba(65,50, 100, 0.3);
  background: linear-gradient(178.6deg, rgb(20, 36, 50) 11.8%, rgb(124, 143, 161) 83.8%);
}
.search-form-input{
  background-color: #e7eaf6;
  border:none;
  border-radius: 6px;
  width: 80%;
  padding: 15px 30px;
  font-size: 16px;
}
.search-form-button{
  padding: 15px 15px;
  border:none;
  border-radius: 6px;
  color: white;
  margin-left: 5px;
  font-size: 16px;
  width: 15%;
  background-color:#4D55CC;
  transition: all 200ms ease-in-out;
}
.search-form-button:hover{
  color:#ff347f;
  background-color: white;
  cursor:pointer;
}
.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;
line-height: 24px;
color:white;
}
.weather-app-details strong{
  color:#ff347f;
}
.weather-app-temperature-container{
  display: flex;

}
.weather-app-temperature-value{
  font-size: 88px;
  font-weight:bold;
  margin-left: 10px;
  
}
.weather-app-temperature-icon{
  Width: 88px;
  height: 88px;
  margin-top: 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: white;
  font-size: 16px;
  font-weight: 900;
  line-height: 20px;
  margin-bottom: 1px;

}
.weather-forecast-icon{
  width:88px;
  height: 88px;
  margin-bottom: 1px;
}
.weather-forecast-temperatures{
  text-align: center;
  color:#ff347f;
  display: flex;
  justify-content: center;
  margin-top: 5px;
}
.weather-forecast-temperature{
  padding: 0 10px;
}