body {
  background-color: rgb(248, 245, 237);
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

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

a {
  color: rgb(163, 167, 122);
}
.app {
  background: white;
  max-width: 600px;
  margin: 45px auto;
  box-shadow: 0 30px 50px rgba(100, 65, 65, 0.08);
  border-radius: 16px;
  padding: 30px;
  border: 0.1px solid rgb(188, 199, 64);
}
.search-form-input {
  background-color: rgb(240, 244, 207);
  border: none;
  border-radius: 6px;
  width: 80%;
  padding: 20px;
  font-size: 16px;
  color: rgb(180, 198, 18);
  font-family: "Roboto Mono", monospace;
  font-weight: 500;
}
.search-form-button {
  background: rgb(213, 220, 155);
  padding: 23px 25px;
  margin-left: 5px;
  border: none;
  border-radius: 6px;
  color: rgb(75, 80, 28);
  font-family: "Roboto Mono", monospace;
  font-weight: 800;
  font-size: 13px;
}
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: rgb(84, 77, 90);
  line-height: 24px;
  font-weight: 500;
}

.weather-app-details strong {
  color: rgb(231, 100, 56);
}
.weather-app-temperature-container {
  display: flex;
}
.weather-app-temperature {
  font-size: 88px;
  line-height: 88px;
  font-weight: bold;
}

.weather-app-icon {
  width: 88px;
  height: 88px;
}

.weather-forecast-temperatures {
  text-align: center;
  color: #f65282;
  margin-top: 5px;
  font-size: 14px;
}

.weather-forecast-temperatures strong,
.weather-forecast-temperatures span {
  display: inline;
  margin: 0 2px;
}

.weather-app-unit {
  margin-top: 6px;
  font-size: 28px;
}

.weather-forecast-day {
  margin: 0 auto;
  text-align: center;
  flex: 1;
  min-width: 80px;
  padding: 10px;
}

.weather-forecast {
  justify-content: space-between;
  display: flex;
  margin-top: 30px;
  display: flex;
}
.weather-forecast-date {
  text-align: center;
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

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

footer {
  border-bottom: 1px solid #f9f9f9;
  padding: 0 0 30px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(30, 27, 27, 0.6);
  font-weight: 400;
}
