body {
  font-family: "Jersey 10", sans-serif;
  background-image: url("../images/background.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  letter-spacing: 2px;
}

a {
  color: #a388de;
}

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

main {
  padding: 30px 0;
}

.weather-app {
  background: #ffe6f6;
  max-width: 600px;
  margin: 45px auto;
  padding: 30px;
  box-shadow: -15px 0 0 0 #b88ddf, 15px 0 0 0 #b88ddf, 0 -15px 0 0 #b88ddf,
    0 15px 0 0 #b88ddf;
}

.search-form-input,
.search-form-button {
  font-family: "Jersey 10", sans-serif;
  font-size: 16px;
}

.search-form-input {
  background-color: #ffffff;
  border: none;
  border-radius: 6px;
  width: 80%;
  padding: 15px 20px;
  letter-spacing: 2px;
}
.search-form-button {
  background: #b989de;
  padding: 15px 30px;
  border: none;
  border-radius: 6px;
  margin-left: 5px;
  color: white;
  letter-spacing: 1px;
}

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

.weather-app-city {
  margin: 0;
  font-size: 45px;
  line-height: 48px;
  letter-spacing: 4px;
}

.weather-app-details {
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
  color: #8d99ae;
}

.weather-app-details strong {
  color: #7b1fa2;
}

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

#icon {
  font-size: 44px;
  margin-top: 25px;
  padding-right: 15px;
  width: 46px;
  height: 46px;
}

.weather-app-temperature {
  /*   font-size: 88px; */
  font-size: 110px;
  font-weight: bold;
  margin-left: 25px;
  letter-spacing: 4px;
}

.weather-app-unit {
  /*   margin-top: 16px; */
  /*  font-size: 40px; */
  font-size: 43px;
  margin-top: 19px;
}

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

.weather-forecast-date {
  text-align: center;
  color: #8d99ae;
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 10px;
}

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

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

.weather-forecast-temperature {
  padding: 0 10px;
}

footer {
  border-top: 1x solid #ffe6f6;
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
}
