body {
  background: rgba(254, 252, 166, 0.2);
  font-family: "Bricolage Grotesque", sans-serif;
}

.weather-app-content {
  background: #fff;
  border-radius: 10px;
  max-width: 700px;
  margin: 20px auto;
  padding: 30px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
}

.header-title {
  text-align: center;
  padding: 15px 20px;
}

.weather-form-input {
  background: rgba(254, 252, 166, 0.2);
  width: 80%;
  padding: 15px 20px;
  border-radius: 4px;
  border: 1px solid #ffcedd;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  font-weight: 500;
}

.weather-form-button {
  background: #ffcedd;
  border: none;
  padding: 15px 20px;
  border-radius: 4px;
  margin-left: 5px;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 18px;
  width: 18%;
  font-weight: 500;
  cursor: pointer;
}
main {
  margin: 20px;
}
.weather-city-name {
  margin: 0;
  margin-top: 20px;
  font-size: 40px;
}

strong {
  color: #ff9ebb;
}

.weather-current-details {
  margin: 0;
}

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

.weather-current-display {
  display: flex;
}

.weather-current-icon {
  width: 100%;
  margin-top: 15px;
}

.weather-current-temperature {
  font-size: 88px;
}

.weather-current-unit {
  font-size: 30px;
  margin-top: 15px;
}

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

.weather-forecast-day {
  text-align: center;
}

.weather-forecast-date {
  font-size: 20px;
}

.weather-forecast-icon {
  margin: 5px;
  width: 70px;
  height: 70px;
}

.weather-forecast-temperature-max {
  font-size: 20px;
}

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

footer {
  padding: 40px 0 20px 0;
  text-align: center;
  font-size: 14px;
}

a {
  color: #ff9ebb;
  font-weight: bold;
  text-decoration: none;
}
