body {
  background-image: url("https://www.thoughtco.com/thmb/02bRt9qih-jHe2cvSGP7GeWM5no=/750x0/filters:no_upscale():max_bytes(150000):strip_icc():format(webp)/clouds-5b6b4e50c9e77c0050491212.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.container {
  border-radius: 14px;
  background-color: #708090;
  padding: 20px;
  margin: 50px auto;
  max-width: 500px;
}

.search-input-weather {
  border: none;
  width: 80%;
  font-size: 20px;
  background-color: #add8e6;
  border-radius: 10px;
  padding: 10px 15px;
}

.search-input-weather:focus {
  outline: none;
  box-shadow: none;
  background-color: #add8e6;
}

.search-button {
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 10px;
  background-color: #00008b;
}

.search-button:hover {
  background-color: grey;
}

.container-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
}

container.city-name {
  line-height: 30px;
  margin: 0;
  font-size: 25px;
}

h1 {
  color: white;
}

.container-details {
  font-weight: 400;
  font-size: 16px;
  color: white;
  line-height: 24px;
}
.container-details strong {
  color: yellow;
}
.container-temp {
  display: flex;
}
.weather-temp {
  font-weight: bold;
  font-size: 88px;
  line-height: 88px;
  color: white;
}
.weather-unit {
  font-size: 30px;
  margin-top: 8px;
  color: white;
}
.weather-app-icon {
  width: 75px;
  height: 75px;
}

.weather-forecast {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 10px;
}

.forecast-day {
  background: #f0f0f0;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  width: 18%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.forecast-date {
  font-weight: bold;
  margin-bottom: 5px;
}

.forecast-icon {
  width: 50px;
  height: 50px;
}

.forecast-temp {
  font-size: 14px;
  margin-top: 5px;
}

footer {
  border-top: 1px solid #f9f7fe;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.6);
}
a {
  color: blueviolet;
}
