body {
  background-image: url("fefe.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* 30% black overlay */
  z-index: -1;
}

a {
  color: #937867;
}

.weather-app {
  max-width: 600px;
  margin: 45px auto;
  padding: 30px;
  box-shadow: 0 0 30px 50px hsla(17, 55%, 77%, 0.653);
}

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

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

.search-form-input {
  background-color: #f9f7fe;
  border: none;
  border-radius: 6px;
  width: 80%;
  font-size: 16px;
  padding: 15px 20px;
}

.search-form-button {
  background: #cba489e9;
  padding: 15px 30px;
  border: none;
  font-size: 16px;
  margin-left: 5px;
  border-radius: 6px;
  color: white;
}

main {
  padding: 30px 0;
}


.weather-app-city {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
  text-align: center;
}

.weather-app-details {
  font-size: 16px;
  color: rgba(207, 155, 115, 0.945);
  line-height: 24px;
  font-weight: 500;
}

.weather-app-details strong {
  color: #cfa07a;
}

.weather-app-temperature-container {
  display: flex;
}

.weather-app-icon {
  font-size: 44px;
  margin-top: 22px;
}

.weather-app-temperature {
  font-size: 88px;
  margin-left: 10px;
  font-weight: bold;
}

.weatehr-app-unit {
  margin-top: 16px;
  font-size: 28px;
}

footer {
  border-top: 1px solid #fdfef7;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 14px;
  color: #75582ee0;
}