body {
  background-color: #a9d4fe;
  font-family: "Winky Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.weather-app {
  background: rgba(255, 255, 255, 0.918);
  max-width: 600px;
  margin: 80px auto;
  border-radius: 20px;
  padding: 30px;
}

.weather-app:hover {
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
  border: 2px solid #602fde;
  transition: opacity 200ms ease-in-out;
}

main {
  padding: 30px 0;
}

a {
  color: #3e50e5;
}

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

.weather-app-city {
  margin: 8;
  font-size: 42px;
  line-height: 48px;
}

.weather-app-details {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: rgba(39, 33, 66, 0.4);
}

.weather-app-details strong {
  color: #1125e2;
}

.weather-app-temperature-container {
  display: flex;
}

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

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

.weather-app-unit {
  margin-top: 10px;
  font-size: 28px;
}

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

.weather-forecast-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 80px;
  padding: 10px;
}

.weather-forecast-icon {
  font-size: center;
  text-align: center;
}

.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: 72px;
  height: 72px;
  display: block;
  margin: 0 auto;
}

.weather-forecast-temperatures {
  text-align: center;
  color: #1125e2;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.high-temp {
  font-weight: bold;
  color: #1125e2;
}

.low-temp {
  color: #1125e2;
  font-weight: normal;
}

header {
  border-bottom: 1px solid #9acafa;
  padding: 0 0 30px 0;
}

.search-form-input {
  background-color: #9bcdfe;
  border: none;
  border-radius: 6px;
  width: 80%;
  font-size: 16px;
  padding: 15px 20px;
}

.search-form-button {
  background: #3e50e5;
  padding: 15px 20px;
  border: none;
  font-size: 14px;
  border-radius: 8px;
  margin-left: 10px;
  color: whitesmoke;
}

.search-form-button:hover {
  background: #602fde;
  cursor: pointer;
  transform: scale(1.2);
  filter: contrast(90%);
}

footer {
  border-top: 1px solid #a9d4fe;
  padding: 0 0 30px 0;
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
