body {
  background-color: #f9f7fe;
  font-family: "Roboto", sans-serif;
}
header {
  border-bottom: 1px solid #f9f7fe;
  padding: 0 0 30px 0;
}
h1 {
  text-align: center;
}
h2 {
  margin: 0;
}
main {
  padding: 30px 0;
}
footer {
  border-top: 1px solid #f9f7fe;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
a {
  color: #885df1;
}
.weather-app {
  background: white;
  max-width: 600px;
  margin: 45px auto;
  box-shadow: 0 30px 5ßpx rgba(65, 50, 100, 0.08);
  border-radius: 16px;
  padding: 30px;
}
.search-form-input {
  background-color: #f9f7fe;
  border: none;
  border-radius: 6px;
  width: 80%;
  font-size: 16px;
  padding: 15px 20px;
}

.search-button {
  background-color: #885df1;
  padding: 15px 30px;
  border: none;
  font-size: 16px;
  margin-left: 5px;
  border-radius: 6px;
  color: white;
}
.weather-app-data {
  display: flex;
  justify-content: space-between;
}
.actual-city {
  font-size: 38px;
  line-height: 48px;
}
.weather-app-details {
  font-size: 16px;
  color: rgba(39, 33, 66, 0.4);
  line-height: 24px;
  font-weight: 500;
}
.weather-app-details strong {
  color: #f65282;
}
.weather-app-temperature-container {
  display: flex;
}
.icon-actual-weather {
  width: 88px;
  height: 88px;
}
.temperature-value-actual-weather {
  font-size: 88px;
  line-height: 88px;
  font-weight: bold;
}
.temperature-unit-actual-weather {
  margin-top: 6px;
  font-size: 28px;
}
.weather-app-forecast {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin-top: 15px;
}
.forecast-day-name {
  font-size: 16px;
  color: rgba(39, 33, 66, 0.4);
}
.forecast-icon-day {
  width: 60px;
  height: 60px;
  margin: 10px;
}
.forecast-temperature-day {
  display: flex;
  justify-content: space-evenly;
  color: #f65282;
  font-size: 16px;
  font-weight: bold;
}
.forecast-min-temperature-day {
  opacity: 0.6;
}
