body {
  background-color: rgb(203, 220, 235);
  font-family: "Roboto", sans-serif;
}
header {
  border-bottom: 1px solid;
  padding: 0 0 20px 0;
  color: rgb(223, 223, 223);
}

.weather-app {
  background-color: rgb(252, 251, 250);
  max-width: 600px;
  margin: 30px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 16px;
  padding: 30px;
}
.search-form-input {
  background-color: rgb(203, 220, 235);
  border: none;
  width: 80%;
  padding: 15px 20px;
  font-size: 16px;
  border-radius: 6px;
}
.search-form-input::placeholder {
  color: rgb(109, 148, 197);
}
.search-form-button {
  background: rgb(109, 148, 197);
  padding: 15px 30px;
  border: none;
  font-size: 16px;
  margin-left: 5px;
  border-radius: 6px;
  color: white;
}
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: 20px;
  line-height: 26px;
  color: rgb(61, 60, 60);
}

.weather-app-temperature-container {
  display: flex;
}
.weather-app-icon {
  display: block;
  width: 88px;
  height: 88px;
  margin-top: 0px;
}
.weather-app-temperature {
  font-size: 88px;
  font-weight: bold;
  line-height: 88px;
  margin-left: 10px;
}
.weather-app-unit {
  margin-top: 5px;
  font-size: 28px;
}

.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}
.weather-forecast-date {
  text-align: center;
  color: rgb(110, 110, 110);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}
.weather-forecast-icon {
  text-align: center;
  font-size: 38px;
}
.weather-forecast-temperatures {
  text-align: center;
  color: rgb(253, 139, 45);
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.weather-forecast-temperature {
  padding: 0 10px;
}
footer {
  border-top: 1px solid;
  padding: 30px 0 0 0;
  border-color: rgb(223, 223, 223);

  text-align: center;
  font-size: 14px;
  color: rgb(156, 156, 156);
}
footer a {
  color: rgb(109, 148, 197);
  text-decoration: none;
}
