body {
  background: #f9f7fe;
  font-family: "Fira Sans", sans-serif;
}

header {
  padding-bottom: 20px;
  border-bottom: 2px solid #f9f7fe;
}

.weather-app-container {
  background: white;
  width: 600px;
  margin: 45px auto;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
}

.city-input {
  padding: 15px 20px;
  width: 70%;
  border: none;
  background-color: #f9f7fe;
  border-radius: 6px;
  font-size: 16px;
}

.city-input-button {
  padding: 15px 30px;
  margin-left: 4px;
  border: none;
  background-color: #885df1;
  color: white;
  border-radius: 6px;
  font-size: 16px;
  transition: ease-in-out 200ms;
}

.city-input-button:hover {
  cursor: pointer;
}

main {
  padding: 30px 0px;
}

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

main h1 {
  margin-top: 16px;
  margin-bottom: 10px;
  font-size: 44px;
  line-height: 48px;
}

.time {
  color: rgba(39, 33, 66, 0.4);
  font-weight: 600;
  line-height: 24px;
  padding: 15px 0;
}

.data-highlight {
  color: #f65282;
}

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

.temperature-icon {
  font-size: 56px;
  padding-right: 12px;
}

.temperature-value {
  font-size: 88px;
  font-weight: bold;
}

.temperature-unit {
  margin-top: 16px;
  font-size: 28px;
}

.weather-forecast {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  margin-top: 10px;
  border-top: 2px solid #f9f7fe;
}

.forecast-days {
  padding: 5px;
  box-shadow: 0 0 20px rgba(65, 50, 100, 0.08);
  border-radius: 10px;
  transition: 200ms ease-in-out;
}

.forecast-days:hover {
  transform: scale(1.1);
}

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

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

.forecast-temperatures {
  display: flex;
  justify-content: center;
  color: #f65282;
}

.forecast-temp {
  padding: 0 10px;
}
footer {
  padding-top: 10px;
  border-top: 2px solid #f9f7fe;
  font-size: 14px;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
}

a {
  color: #885df1;
}
