body {
  font-family: "Roboto", sans-serif;
  background-image: url(https://img.freepik.com/free-vector/gradient-pastel-sky-background_23-2148902497.jpg?semt=ais_hybrid&w=740&q=80);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}
.weather-app {
  background-color: #f0e9fa;
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.55);
  border-radius: 16px;
}

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

.search-form-input {
  background-color: #f9f9f9;
  border: none;
  border-radius: 6px;
  width: 80%;
  padding: 15px 30px;
  font-size: 13px;
  line-height: 20px;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  color: rgba(39, 33, 66, 0.6);
  outline: none;
}
.search-form-button {
  background-color: #ae6bc9;
  padding: 15px 30px;
  border: none;
  font-size: 16px;
  margin-left: 5px;
  border-radius: 6px;
  color: #ffffff;
  font-weight: 500;
}

main {
  padding: 30px 0;
}

.weather-app-data {
  display: flex;
  justify-content: space-between;
}
.weather-app-city {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
  font-weight: 600;
  color: #272142;
}

.weather-app-details {
  font-size: 16px;
  line-height: 24px;
  color: rgba(39, 33, 66, 0.4);
  font-weight: 380;
  margin-top: 8px;
}
.weather-app-details strong {
  color: #f65282;
}

.weather-app-container {
  display: flex;
}
.weather-app-icon {
  width: 88px;
  height: 88px;
  margin-top: 10px;
}
.weather-app-temperature {
  font-size: 88px;
  font-weight: 500;
  color: #272142;
}

.weather-app-unit {
  margin-top: 16px;
  font-size: 28px;
  color: #272142;
}

.days-of-weather {
  font-size: 16px;
  line-height: 24px;
  color: rgba(39, 33, 66, 0.4);
  font-weight: 400;
  margin-top: 8px;
  font-weight: 600;
}

.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
  margin-bottom: 10px;
}
.weather-forecast-date {
  text-align: center;
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 20px;
}

.weather-forecast-icon {
  width: 88px;
  height: 88px;
  display: block;
  margin: 0 auto;
}
.weather-forecast-temperatures {
  text-align: center;
  color: #f65282;
  margin-top: 15px;
  display: flex;
  justify-content: center;
}
.weather-forecast-temperature {
  padding: 0 10px;
}
footer {
  border-top: 1px solid #f9f7fe;

  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
a {
  color: #ae6bc9;
}
