body {
background-color: #f9f7fe;
font-family: "Roboto", sans-serif;
}
.weather-app {
  background-color: white;
  max-width: 600px;
  margin: 45px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  padding: 30px;
  border-radius: 16px;
}
header {
  border-bottom: 1px solid #f9f7fe;
  padding: 0 0 30px 0;
}
.search-form-input {
  background-color: #f9f7fe;
    border: none;
    border-radius: 6px;
    width: 60%;
    padding: 15px 20px;
    font-size: 16px;
}
.search-form-button {
  background-color: #885df1;
    border: none;
    border-radius: 6px;
    color: white;
    padding: 15px 30px;
    margin-left: 5px;
    font-size: 16px;
}
footer {
  border-top: 1px solid #f9f7fe;
    padding: 30px 0 0 0;
    text-align: center;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
}
a {
      color: #885df1;
}
.weather-app-data {
  display: flex;
    justify-content: space-between;
}
.weather-app-city {
    line-height: 48px;
    font-size: 38px;
    margin: 0;
 }
.weather-app-details {
    line-height: 24px;
    font-size: 16px;
    color: rgba(39, 33, 66, 0.4);
    font-weight: 500;
}
.weather-app-details strong {
    color: #f65282;
}
.weather-app-temperature {
    font-size: 88px;
    line-height: 88px;
    font-weight: bold;
    
}
.weather-app-temperature-container {
  display: flex;
    
}
.weather-app-icon {
  width: 88px;
  height: 88px;
}
.weather-app-unit {
  margin-top: 6px;
  font-size: 28px;
}
.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30;
}

.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 {
 width: 88px
 height: 88px;
 display: block;
  margin: 0 auto;
}
.weather-forecast-temperatures {
  text-align: center;
  color: #f65282;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.weather-forecast-temperature {
  padding: 0 10px;
}
@media (max-width: 930px) {
  .weather-app {
    flex-direction: column;
    text-align: center;
  }
  footer {
    align-items: center;
  }
  .weather-forecast{
    align-items: center;
    flex-direction: column;
  }
   .weather-app-temperature-container {
    max-width: 90%;
  }
  }