body {
  background-color: #f9f7fe;
  font-family: "Source Code Pro", monospace;
}

a {
  color: rgb(226, 76, 43);
}

.weather-app {
  background: white;
  max-width: 600px;
  margin: 20px auto;
  box-shadow: 0 80px 90px rgba(109, 62, 109, 0.1);
  border-radius: 20px;
  padding: 40px;
}

header {
  border-bottom: 1px solid #f9f7fe;
  padding: 0 0 20px;
}

.search-form-input {
  background-color: #f9f7fe;
  border: none;
  font-size: 15px;
  border-radius: 20px;
  width: 80%;
  padding: 15px;
}

.search-form-button {
  background-color: rgb(226, 76, 43);
  padding: 15px 30px;
  border: none;
  font-size: 15px;
  border-radius: 20px;
  color: white;
}

main {
  padding: 30px 0;
}

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

.weather-app-city {
  margin: 0;
  font-size: 38px;
  line-height: 50px;
}

.weather-app-info {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
}

.weather-app-info strong {
  color: red;
}

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

.weather-app-icon {
  width: 90px;
  height: 90px;
}

.weather-app-temp {
  font-size: 90px;
  line-height: 90px;
  font-weight: bold;
  margin-top: 5px;
}

.weather-app-unit {
  margin-top: 18px;
  font-size: 28px;
  font-weight: bold;
}

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

.weather-forecast-date {
  text-align: center;
  font-size: 14px;
  line-height: 15px;
}

.weather-forecast-icon {
  width: 60px;
  display: block;
  margin: 0 auto;
}

.weather-forecast-temperatures {
  text-align: center;
  margin-top: 5px;
  color: red;
  display: flex;
  justify-content: center;
}

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

footer {
  border-top: 1px solid #f9f7fe;
  padding: 10px 0 0 0;
  font-weight: 500px;
  text-align: centre;
  font-size: 13px;
}
