body {
  background-image: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/167/396/original/pexels-pixabay-531767.jpg?1749106171");
  background-size: cover;
  background-position: center top;
  font-family: "Montserrat", sans-serif;
}

header {
  border-bottom: 1px solid #4491c9;
  padding: 0 0 20px 0;
}

a {
  color: #4491c9;
}

.weather-app {
  background-color: whitesmoke;
  opacity: 0.9;
  max-width: 600px;
  margin: 45px auto;
  padding: 30px;
  box-shadow: 0 30px 50px #41326414;
  border-radius: 16px;
  box-sizing: border-box;
  width: 100%;
  overflow: auto;
}

.search-form-input {
  background-color: #4491c9;
  opacity: 50%;
  color: #cfd4de;
  border: none;
  border-radius: 5px;
  height: 50px;
  display: inline-block;
  padding: 15px 20px;
  width: 70%;
  font-size: 16px;
  margin-left: 15px;
}

.search-form-input::placeholder {
  color: #cfd4de;
}

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

main {
  padding: 30px 0;
}

.app-data {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}

.app-city {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 48px;
}

.app-details {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 20px;
}

.app-details strong {
  color: #f65282;
  font-weight: bold;
}

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

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

.app-emoji {
  width: 88px;
  height: 88px;
}

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

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

.forecast-date {
  text-align: center;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
  object-fit: cover;
}

.forecast-icon {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

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

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

footer {
  border-top: 0.5px solid #4491c9;
  padding: 20px 0 0 0;
  text-align: center;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.7);
}
