body {
  font-family: "Outfit", sans-serif;
}
.weather-app {
  background: white;
  max-width: 600px;
  margin: 30px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  padding: 30px;
  border-radius: 20px;
  transition: transform 0.2s ease;
}
.weather-app-data {
  display: flex;
  justify-content: space-between;
}
.weather-app-city {
  font-size: 42px;
  margin: 0;
  font-weight: 700;
  letter-spacing: -1px;
}
.weather-app-details {
  font-size: 13px;
  color: rgba(46, 42, 38, 0.55);
  line-height: 20px;
  font-weight: 500;
}
.weather-app-details strong {
  color: #f19c2c;
}
.weather-app-temperature-container {
  display: flex;
}
.weather-app-temperature {
  font-size: 80px;
  font-weight: 300;
}
.weather-app-icon {
  font-size: 40px;
  margin-top: 25px;
  margin-right: 2px;
  position: relative;
  top: -20px;
}

.weather-app-unit {
  margin-top: 15px;
  font-size: 23px;
}
.weather-forecast {
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
  gap: 30px;
}
.weather-forecast-day {
  flex: 1;
  padding: 6px;
  border-radius: 12px;
  transition: all 0.2s ease;
}
.weather-forecast-day:hover {
  background: #fff7ed;
}
.weather-forecast-date {
  text-align: center;
  color: rgba(46, 42, 38, 0.55);
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 3px;
}

.weather-forecast-icon img {
  width: 60px;
  height: 60px;
}
.weather-forecast-temperatures {
  text-align: center;
  color: #f19c2c;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.weather-forecast-temperature {
  padding: 0 10px;
}

header {
  border-bottom: 1px solid #fff7ed;
  padding: 0 0 25px 0;
}
footer {
  border-top: 1px solid #fff7ed;
  padding: 25px 0 0 0;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
}
a {
  color: #ea580c;
}
a:hover {
  text-decoration: underline;
}

.search-form-input {
  background-color: #fff7ed;
  border: none;
  border-radius: 12px;
  width: 80%;
  padding: 14px;
  cursor: text;
  font-size: 15px;
}
.search-form-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(241, 156, 44, 0.2);
}

.search-form-button {
  background: #f19c2c;
  font-weight: bold;
  font-size: 14px;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  margin-left: 5px;
  color: black;
  cursor: pointer;
  transition: background 0.2s ease;
  transform: all 0.2s ease;
}
.search-form-button:hover {
  background: #ea580c;
  transform: translateY(-1px);
}
main {
  padding: 30px 0;
}
