body {
  background-color: hsl(33, 81%, 79%);
  font-family: "Open Sans", sans-serif;
}
a {
  color: #57160b;
}
main {
  padding: 30px 0;
}
.weather {
  background-image: url("https://i.postimg.cc/tC1QWQSx/heavy-snow-in-the-forest-picjumbo-com.jpg");
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 30px 50px rgba(161, 143, 204, 0.08);
}

header {
  padding: 0 0 30px 0;
}
.search-form-input {
  background-color: #df6630;
  border: none;
  border-radius: 6px;
  width: 70%;
  font-size: 16px;
  padding: 15px 20px;
}
.search-form-button {
  border: none;
  background-color: #df6630;
  border: none;
  border-radius: 6px;
  width: 20%;
  font-size: 16px;
  padding: 13px 18px;
}
.search-form-butto:hover {
  cursor: pointer;
}
.weather-city {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
}

.weather-day {
  color: #d1e8ff;
}
.weather-details {
  font-size: 16px;
  color: whitesmoke;
  line-height: 24px;
  font-weight: 500;
}
.weather-app {
  color: #d1e8ff;
  display: flex;
  justify-content: space-between;
}
.weather-temeprature-container {
  display: flex;
}
.weather-icon {
  width: 88px;
  height: 88px;
}
.temperature {
  font-size: 88px;
  margin-left: 10px;
  font-weight: bold;
}
.temperature-unit {
  margin-top: 16px;
  font-size: 28px;
}

.weather-forecast {
  color: black;
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
}
.weather-forecast-day {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.weather-forecast-date {
  color: #d1e8ff;
  font-size: 16px;
  color: whitesmoke;
  font-size: 20px;
}

.weather-forecast-icon {
  width: 60px;
  height: 60px;
}

.weather-forecast-temperature {
  font-size: 14px;
}
.weather-forecast-temperature-min {
  opacity: 0.6;
}

footer {
  text-align: center;
  font-family: monospace;
  font-size: 15px;
  color: #e6d8c7;
}
