body {
  background: #fff9f5;
  font-family: "Inter", sans-serif;
}

.weather-app {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 5px 5px 10px rgba(151, 151, 151, 0.1);
  margin: 60px auto;
  max-width: 600px;
  padding: 30px;
}

header {
  border-bottom: 1px solid #fff5f0;
  padding-bottom: 30px;
}

.city-search-input,
.city-search-button {
  border: none;
  border-radius: 5px;
  font-size: 16px;
  padding: 15px;
}

.city-search-input {
  background: #fff6f0;
  margin-right: 5px;
  width: 78%;
}

.city-search-button {
  background: #ffa366;
  color: #ffffff;
  width: 20%;
}

main {
  padding: 30px 0;
}

.current-weather-data {
  display: flex;
  justify-content: space-between;
}

.current-weather-overview {
  display: flex;
}

.current-temperature-data {
  display: flex;
}

.current-temperature-icon {
  width: 95px;
  height: auto;
}

.current-temperature-value {
  font-size: 60px;
  font-weight: bold;
  margin-top: 10px;
}

.current-temperature-unit {
  color: #a9a8b5;
  font-size: 18px;
  margin-top: 20px;
  margin-right: 15px;
}

#current-temperature-celsius:hover {
  color: #000000;
  cursor: pointer;
}

#current-temperature-fahrenheit:hover {
  color: #000000;
  cursor: pointer;
}

.current-weather-details {
  color: #a9a8b5;
  font-size: 14px;
  line-height: 15px;
  margin-top: 21px;
}

.current-weather-details strong {
  color: #ff5773;
}

.current-city-overview {
  text-align: right;
}

.current-city-data {
  font-size: 40px;
  font-weight: 600;
  line-height: 48px;
  margin: 0 auto;
}

.current-time-data {
  color: #a9a8b5;
  margin: 0 auto;
}

.weather-forecast {
  color: #a9a8b5;
  display: flex;
  font-size: 15px;
  justify-content: space-between;
  line-height: 20px;
  margin-top: 25px;
  text-align: center;
}

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

.weather-forecast-temperature {
  color: #ff5773;
  display: flex;
  justify-content: center;
}

.weather-forecast-max-temperature,
.weather-forecast-min-temperature {
  padding: 0 5px;
}

footer {
  border-top: 1px solid #fff5f0;
  color: #a9a8b5;
  font-size: 13px;
  padding-top: 25px;
  text-align: center;
}

a {
  color: #ffa366;
}
