body {
  background: linear-gradient(90deg, #c1dfc4 0%, #deecdd 100%);
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

a {
  color: rgb(30, 136, 87);
}

.weather-app {
  background-color: white;
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.1);
  border-radius: 40px;
}

header {
  border-bottom: 2px solid;
  border-bottom: 2px solid rgb(30, 136, 87);
}

.time {
  color: rgb(127, 133, 130);
  font-size: 18px;
  font-weight: bold;
}

.search-form-input {
  background-color: #c1dfc4;
  border: none;
  border-radius: 10px;
  max-width: 80%;
  padding: 15px 20px;
  font-size: 18px;
  margin-bottom: 20px;
}

.search-form-button {
  background-color: rgb(30, 136, 87);
  padding: 15px 20px;
  border: none;
  margin-left: 5px;
  max-width: 80%;
  border-radius: 10px;
  font-size: 18px;
}

main {
  padding: 30px 0;
}

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

.weather-app-city {
  margin: 0;
  font-size: 40px;
  line-height: 50px;
}

.weather-app-details {
  font: 18px;
  line-height: 28px;
}

.weather-app-details strong {
  color: rgb(30, 136, 87);
}

.weather-app-temperature-container {
  display: inline-flex;
  color: rgb(30, 136, 87);
  margin: auto, 40px;
}

.weather-app-icon {
  width: 90px;
  height: 90px;
  margin-top: 40px;
}

.weather-app-temperature {
  font-size: 110px;
}
.weather-app-unit {
  font-size: 40px;
}

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

.weather-forecast-date {
  text-align: center;
  color: rgb(127, 133, 130);
  font-size: 18px;
  line-height: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

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

.weather-forecast-temperatures {
  text-align: center;
  margin-top: 10px;
  color: rgb(40, 182, 116);
  display: flex;
  justify-content: center;
}

.weather-forecast-temperature {
  padding: 0 10px;
}

footer {
  border-top: 2px solid rgb(30, 136, 87);
  margin-bottom: 20px;
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
}
