body {
  background-color: #d8dbe2;
}

.weather-app {
  background-color: #ec9a29;
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  box-shadow: 0 30px 50px rgba(15, 6, 15, 0.08);
  border-radius: 8px;
  font-family: "Chakra Petch", sans-serif;
  background-image: 360;
}

header {
  border-bottom: 3px solid #373f51;
  padding: 0 0 30px 0;
}

.search-form-input {
  background-color: #d8dbe2;
  border: none;
  border-radius: 8px;
  width: 70%;
  padding: 10px;
  font-size: 20px;
  color: #fe6812;
  font-size: 20px;
  font-family: "Chakra Petch", sans-serif;
}

.search-form-button {
  background-color: #ec9a29;
  border: none;
  border-radius: 8px;
  width: 28%;
  padding: 11px 20px;
  padding-right: 30px;
  margin-left: 5px;
  font-size: 18px;
  color: #d8dbe2;
  font-size: 20px;
  font-family: "Chakra Petch", sans-serif;
}

.search-form-button:hover {
  background-color: #fe6812;
  color: #d8dbe2;
}

.search-form-input:hover {
  background-color: #373f51;
  color: white;
}

main {
  padding: 30px O;
  font-family: "Chakra Petch", sans-serif;
}
.weather-app-data {
  display: flex;
  justify-content: space-between;
}
.weather-app-city {
  font-family: "Chakra Petch", sans-serif;
  margin: 0;
  font-size: 50px;
  line-height: 48px;
  padding-top: 5px;
}

.weather-app-details {
  font-size: 16px;
  margin-bottom: 5px;
  color: #373f51;
  line-height: 24px;
  font-weight: 500;
}

.weather-app-details strong {
  color: #d8dbe2;
  padding-bottom: 5px;
}

.weather-app-temperature-container {
  display: flex;
  font-family: "Chakra Petch", sans-serif;
}

.weather-app-icon {
  width: 80px;
  height: 80px;
  margin-top: 22px;
  margin-left: 10px;
  margin-right: 8px;
}
.weather-app-temperature {
  font-size: 88px;
  font-weight: bold;
  color: #000000;
}
.weather-app-unit {
  font-size: 26px;
  margin-top: 15px;
  color: #000000;
  font-weight: bold;
}

.weather-forecast {
  display: flex;
  justify-content: space-around;
}

.weather-forecast-date {
  text-align: center;
  color: #d8dbe2;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
  margin-top: 25px;
  font-weight: bold;
}

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

.weather-forecast-temperatures {
  text-align: center;
  font-weight: bold;
  color: #373f51;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

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

footer {
  border-top: 3px solid #373f51;
  padding: 20px 0 0 0;
  text-align: right;
  font-size: 14px;
  color: #373f51;
  font-family: "Chakra Petch", sans-serif;
  font-weight: bold;
}

a:hover {
  background-color: #373f51;
  color: #fe6812;
}
