body {
  background-image: url(images/sky-red.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  font-family: "Montserrat", sans-serif;
}
a {
  color: #ffe700;
}
.app-container {
  background: linear-gradient(
    112.5deg,
    rgb(95, 10, 135) 11.4%,
    rgb(164, 80, 139) 60.2%
  );
  color: white;
  max-width: 600px;
  margin: 50px auto;
  padding: 40px;
  box-shadow: 0 40px 60px rgba(65, 50, 100, 0.1);
  border-radius: 16px;
}
header {
  border-bottom: 1px solid #f7d5a6;
  padding: 0 0 15px 0;
}
.search-form {
  display: flex;
  gap: 10px;
}
.search-form-input {
  flex: 1;
  min-width: 0;
  background: #f7d5a6;
  border: none;
  border-radius: 25px;
  padding: 15px 20px;
  font-size: 1rem;
}
.search-form-button {
  flex-shrink: 0;
  background: #fdb44b;
  color: #4a1446;
  border: none;
  border-radius: 25px;
  padding: 15px 20px;
  font-size: 1rem;
  white-space: nowrap;
  cursor: pointer;
}
@media (max-width: 420px) {
  .search-form {
    flex-direction: column;
  }

  .search-form-button {
    width: 100%;
  }
}
main {
  padding: 20px;
}
.weather-app-data {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.weather-app-city {
  margin-top: 15px;
  font-size: 38px;
  font-weight: normal;
  color: #fdb44b;
  line-height: 48px;
}
.weather-city-details {
  font-size: 16px;
  color: antiquewhite;
  line-height: 24px;
  font-weight: 500;
}
.description {
  font-size: 16px;
  color: antiquewhite;
  line-height: 30px;
  font-weight: 500;
}
.description strong {
  color: #fdb44b;
}
.weather-app-data-info {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 0 30px;
}
.weather-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}
.weather-right {
  text-align: left;
}
.weather-icon {
  width: 88px;
  height: 88px;
  display: block;
  margin-bottom: 8px;
}
.weather-temp-details {
  display: flex;
}
.temp-value {
  font-size: 88px;
}
.temp-unit {
  font-size: 16px;
  margin-top: 15px;
}
.weather-forecast {
  border-top: 1px solid #f7d5a6;
  padding: 15px 0 0 0;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}
.weather-forecast-data {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.weather-forecast-day {
  text-align: center;
  color: #fdb44b;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}
.weather-forecast-icon {
  width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto;
}
.weather-forecast-temperatures {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  text-align: center;
  color: antiquewhite;
}
.weather-forecast-temperature {
  padding: 0 5px;
}
footer {
  border-top: 1px solid #f7d5a6;
  padding: 15px 0 0 0;
  text-align: center;
  font-size: 15px;
  color: antiquewhite;
}
