body {
  background-color: #f9f7fe;
  font-family: "Zalando Sans SemiExpanded", sans-serif;
}

header {
  border-bottom: 1px solid;
}
footer {
  border-top: 3px solid whitesmoke;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}
.weather-info {
  background: white;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  max-width: 500px;
  margin: 30px auto;
  border-radius: 20px;
  padding: 20px;
}

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

.weather-city {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
}
.weather-details {
  font-size: 16px;
  line-height: 24px;
  color: rgba(0, 0, 0, 0.5);
}

.weather-details #humidity {
  color: #f65282;
  font-weight: bold;
}

.weather-details #wind-speed {
  color: #f65282;
  font-weight: bold;
}
.weather-container {
  display: flex;
}
.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 10px;
}
.weather-forecast-day {
  text-align: center;
  line-height: 20px;
  color: rgba(39, 33, 66, 0.6);
  margin-bottom: 10px;
  margin-top: 15px;
}

.weather-forecast-icon {
  font-size: 38px;
  text-align: center;
  margin: none;
}

.weather-forecast-temps {
  text-align: center;
  color: #f65282;
  font-weight: 400;
  font-size: small;
}

.weather-forecast-temp {
  padding: 0 5px;
}
#weather-temp {
  margin-top: 10px;
  font-size: 60px;
}
#weather-icon {
  width: 100px;
  height: 100px;
}
#weather-unit {
  margin-top: 20px;
  margin-right: 10px;
}

#search-button {
  font-family: "Zalando Sans SemiExpanded", sans-serif;
  border: none;
  color: white;
  font-weight: 400;
  background-color: #b899f2;
  border-radius: 5px;
  padding: 8px 18px;
  margin-top: 5px;
  font-size: 16px;
  float: right;
}

#search-input {
  background-color: #f9f7fe;
  border: none;
  border-radius: 6px;
  width: 60%;
  padding: 15px 20px;
  font-size: 16px;
}
