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

header {
  border-bottom: 1px solid ghostwhite;
  padding: 30px 0;
}

.weather-app {
  background: white;
  padding: 20px;
  max-width: 600px;
  margin: 30px auto;
  border-radius: 16px;
}

.search-form-input {
  border: none;
  border-radius: 6px;
  width: 80%;
  padding: 15px 20px;
  background-color: ghostwhite;
}

.search-form-button {
  background-color: aquamarine;
  border: none;
  padding: 15px 20px;
  border-radius: 6px;
  color: white;
  margin-left: 5px;
  font-size: 16px;
}

.weather-app-city {
  font-weight: bold;
  font-size: 50px;
}

.weather-design {
  display: flex;
  justify-content: space-between;
}
.temp-details {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}
.temp-details strong {
  color: #f65282;
}
.weather-app-temp-container {
  display: flex;
}

.weather-app-value {
  font-size: 88px;
  font-weight: bold;
  line-height: 88px;
}

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

.weather-app-unit {
  font-size: 30px;
  margin-top: 16px;
}

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

.weather-forecast-date {
  text-align: center;
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}
.weather-forecast-icon {
  width: 50px;
  text-align: center;
  margin-bottom: 10px;
}
.weather-forecast-temperatures {
  color: #f65282;
  font-weight: bold;
  display: flex;
  justify-content: center;
}

.weather-forecast-temperature {
  padding: 0 5px;
}
footer {
  padding: 30px 0 0;
  text-align: center;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.6);
}
