body{
    background:#7E90DA;
    font-family: "PT Mono", monospace;
    font-weight: 400;
    font-style: normal;
}

.app {
  background: white;
  max-width: 600px;
  margin: 45px auto;
  box-shadow: 0 30px 50px rgba(88, 83, 102, 0.226);
  border-radius: 16px;
  padding: 30px;
}

.in-search{
    background: whitesmoke;
    border-radius:6px;
    width:80%;
    font-size:16px;
    padding:15px 20px;
}

.in-button{
    background:whitesmoke;
    padding:15px 20px;
    border-radius:6px;
    font-size:16px;

}

header{
    border-bottom: 1px;
    padding: 30px 0  ;
    text-align: center;
    font-size:15px;
}

footer{
        border-bottom: 1px;
    padding: 30px 0  0 0;
    text-align: center;
    font-size:14px;
    font-weight:589;
}

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

main{
    padding: 30px 0;
}

.weather-app-city{
    margin: 0;
    font-size: 35px;
    line-height:46px;

}

.weather-app-details{
    font-size: 15px;
    line-height: 22px;
    color: #6B7280;
    margin: 0;
    font-weight:500;
}

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

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

.weather-app-icon {
  font-size: 44px;
  margin-top: 22px;
}

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

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

.weather-app-message {
  font-size: 15px;
  color: #6B7280;
  margin: 0 0 10px 0;
}

.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;
  margin-bottom: 10px;
}

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

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