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

h1 {
  font-weight: 700;
  line-height: 38px;
  margin: 20px auto;
}

.description {
  font-weight: 500;
  line-height: 24px;
  font-size: 16px;
  opacity: 0.7;
}

footer p {
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  opacity: 0.5;
}

.humidity-value {
  color: #f6528e;
}

.wind-value {
  color: #f6528e;
}

.temperature-box {
  display: flex;
  justify-content: end;
  align-items: start;
  transform: translateY(-110px);
}

.weather-emoji {
  width: 88px;
  height: 88px;
}

.temperature-value {
  font-size: 88px;
  font-weight: 700;
  line-height: 88px;
}

.temperature-unit {
  font-weight: 400;
  font-size: 28px;
}

.weather-app {
  background-color: #ffffff;
  padding: 20px;
  margin: 40px 350px 40px 350px;
  border-radius: 10px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
}

#search {
  width: 80%;
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  background-color: #f9f7fe;
}

#submit {
  padding: 15px 20px;
  border: none;
  border-radius: 5px;
  background-color: #885df1;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

.weather-forecast {
  display: flex;
  justify-content: space-around;
  transform: translateY(-70px);
}

.forecast-day {
  text-align: center;
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

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

.forecast-temperature {
  text-align: center;
  color: #f6528e;
  display: flex;
  justify-content: center;
}

.temperature {
  padding: 0 10px;
}
