body {
  background-image: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/153/856/original/mountains_blue.jpg?1735811578");
  background-size: cover; /* This ensures the image covers the entire background */
  background-repeat: no-repeat; /* Prevents the background image from repeating */
  background-position: center center; /* Centers the image in the background */
}

a {
  color: #528ab4;
}

.weather-app {
  background: rgba(255, 255, 255, 0.6);
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
}

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

.search-input {
  background-color: #f9f7fe;
  border: none;
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  padding: 20px;
  width: 75%;
  border-radius: 6px;
}

.search-button {
  margin-left: 5px;
  font-size: 16px;
  background-color: #15719f;
  color: white;
  border: none;
  padding: 20px;
  line-height: 1;
  border-radius: 5px;
}

main {
  padding: 30px 0;
}

.current-temperature {
  font-size: 48px;
}

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

.current-city {
  font-size: 38px;
  font-weight: 900;
  margin: 0;
}
.current-details {
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.current-details strong {
  color: #385170;
}

.current-temperature-icon {
  position: relative;
  top: 30px;
  font-size: 10px;
  margin-right: 10px;
}

.current-temperature-value {
  font-size: 80px;
  font-weight: bold;
}

.current-temperature-unit {
  font-size: 28px;
  position: relative;
  top: -38px;
}

footer {
  border-top: 1px solid #f9f7fe;
  text-align: center;
  padding-top: 15px;

  color: rgba(39, 33, 66, 0.4);
}

.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin: 8px 0px;
}

.forecast-date {
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  font-weight: bold;
}
.forecast-icon {
  width: 48px;
  height: 48px;
  display: block;
  margin: 0 auto;
}
.forecast-temperatures {
  color: #385170;
  display: flex;
  justify-content: center;
  text-align: center;
  font-weight: 500;
}

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