body {
  background: url("https://images.pexels.com/photos/1250260/pexels-photo-1250260.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.weather {
  background-color: rgba(255, 255, 255, 0.158);
  backdrop-filter: blur(10px);
  max-width: 600px;
  margin: 45px auto;
  box-shadow: 10px 10px 35px rgb(99, 91, 91);
  padding: 30px;
  border-radius: 16px;
}

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

.search-form-input {
  border: none;
  border-radius: 6px;
  background-color: rgb(238, 222, 238);
  width: 80%;
  padding: 15px 20px;
  font-size: 16px;
}
.search-form-button {
  padding: 15px 30px;
  border: none;
  border-radius: 6px;
  color: white;
  background-color: rgb(43, 39, 39);
  margin-left: 5px;
  font-size: 16px;
  cursor: pointer;
}
main {
  padding: 35px 0;
}
.weather-data {
  display: flex;
  justify-content: space-between;
}
.weather-city {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
}
.weather-details {
  font-size: 16px;
  line-height: 24px;
  color: rgb(19, 18, 18);
  font-weight: 500;
}
.weather-details strong {
  color: rgb(252, 78, 15);
}
.temperature-container {
  display: flex;
}
.weather-temperature {
  font-size: 88px;
  font-weight: bold;
  margin-left: 10px;
}
.icon {
  font-size: 44px;
  margin-top: 22px;
}
.weather-unit {
  margin-top: 16px;
  font-size: 28px;
}
.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}
.forecast-day {
  text-align: center;
  color: rgb(32, 32, 88);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

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

.forecast-temperature {
  text-align: center;
  color: rgb(32, 32, 88);
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.forecast-temp {
  padding: 0 10px;
}

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