body {
  background-image: url("https://i.ibb.co/GWJpHT1/forest-1.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  font-family: Roboto, sans-serif;
}

a {
  color: #3e8742;
}

.weather-app {
  background: #cdd8c5d9;
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
}

header {
  border-bottom: 1px solid #dae6d2;
  padding-bottom: 30px;
}

.search-input {
  background-color: #f6f4e6c2;
  border: none;
  color: rgba(39, 33, 66, 0.4);
  font-size: 18px;
  padding: 20px;
  width: 75%;
  border-radius: 6px;
}

.search-button {
  margin-left: 5px;
  font-size: 18px;
  background-color: #3e8742;
  color: #fff;
  border: none;
  padding: 20px;
  line-height: 1;
  border-radius: 5px;
  transition: all 200ms ease-in-out;
}

.search-button:hover {
  opacity: 0.9;
  cursor: pointer;
}

main {
  padding: 30px 0;
}

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

.current-city {
  color: #3f6944;
  font-size: 40px;
  font-weight: 900;
  line-height: 48px;
  margin: 0;
}

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

.weather-details strong {
  color: #3e8742;
}

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

.current-temperature-icon {
  width: 88px;
  height: 88px;
}

.current-temperature-value {
  color: #3f6944;
  font-size: 80px;
  line-height: 88px;
  font-weight: 700;
}

.current-temperature-unit {
  color: #3f6944;
  font-size: 28px;
  margin-top: 6px;
}

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

.weather-forecast-weekday {
  text-align: center;
  color: rgba(39, 33, 66, 0.4);
  font-size: 18px;
  line-height: 20px;
  margin-bottom: 10px;
}

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

.weather-forecast-temperatures {
  font-size: 18px;
  text-align: center;
  color: #3f6944;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

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

footer {
  border-top: 1px solid #dae6d2;
  text-align: center;
  font-size: 14px;
  padding-top: 30px;
  color: rgba(39, 33, 66, 0.4);
}
