a {
  color: #7bf806e7;
}
body {
  background-color: #cbd9e6;
  font-family: Arial, Helvetica, sans-serif;
}

.weatherapp {
  background-image: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/162/321/original/valentin-muller-bWtd1ZyEy6w-unsplash.jpg?1743887779");
  border-radius: 20px 15px;
  max-width: 900px;
  margin: 45px auto;
  padding: 30px;
  box-shadow: 0 30px 50px #372e4b14;
  background-repeat: no-repeat;
  background-size: cover;
}
header {
  padding: 0 0 30px 0;
  margin-bottom: 20px;
}
.search-form-input {
  background-color: white;
  border: none;
  border-radius: 6px;
  width: 80%;
  font-size: 18px;
  padding: 15px 20px;
}

.search-form-button {
  font-size: 18px;
  border: none;
  border-radius: 6px;
  color: #f8f9fa;
  background: #7eacd8;
  padding: 15px 30px;
  margin-left: 5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.search-form-button:hover {
  background-color: #0dda1e;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
main {
  padding: 15px 0;
}
.app-data {
  justify-content: space-between;
}
.weather-app-city {
  margin-top: 20px;
  font-size: 48px;
  line-height: 48px;
  color: #f8f9fa;
}
.weather-app-details {
  font-size: 18px;
  color: #f8faf6;
  line-height: 24px;
  font-weight: 500;
  padding-top: 25px;
}
.weather-app-details strong {
  color: #4cf509ea;
}
.weather-app-temperature-container {
  display: flex;
  position: relative;
  justify-content: flex-end;
  top: -190px;
  color: #f8f9fa;
}
.weather-app-icon {
  width: 88px;
  height: 88px;
}
.weather-app-temperature {
  font-size: 70px;
  line-height: 65px;
  font-weight: bold;
}
.weather-app-unity {
  margin-top: 10px;
  font-size: 30px;
}

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

.weather-forecast-date {
  text-align: center;
  line-height: 20px;
  font-size: 16px;
  color: #f8f9fa;
  margin-bottom: 10px;
}

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

.weather-forecast-temperatures {
  text-align: center;
  color: #7fff00;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.weather-forecast-temperature {
  padding: 0 8px;
}
footer {
  margin-top: 30px;
  border-top: 1px solid #f9f7ff;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 18px;
  color: #f5f5f5f3;
}
