body {
  background-color: #eeecdf;
  font-family: "Roboto", serif;
}
a {
  color: #c7c0a7;
}

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

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

.search-form-input {
  background-color: #eeecdf;
  border: none;
  border-radius: 4px;
  width: 80%;
  padding: 10px 20px;
}
.search-form-button {
  background-color: #c7c0a7;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  margin-left: 10px;
  font-size: 16px;
}

main {
  padding: 30px 0;
}
.weather-app-data {
  display: flex;
  justify-content: space-between;
}
.weather-app-city {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
}
.weather-app-details {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.4);
  line-height: 20px;
  font-weight: 500;
}
.weather-app-details strong {
  color: #b28c6d;
}
.weather-app-temperature-container {
  display: flex;
}
.weather-app-icon {
  width: 100px;
  height: 100px;
}
.weather-app-temperature {
  font-size: 100px;
  font-weight: bold;
  margin-left: 10px;
  line-height: 100px;
}
.weather-app-unit {
  margin-top: 6px;
  font-size: 28px;
}

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

.weather-forecast-date {
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  font-size: 16px;
  line-height: 20px;
  margin-top: 10px;
}

.weather-forecast-icon {
  width: 100%;
}

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

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

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