body {
  background-color: rgba(252, 224, 228, 0.445);
  font-family: "Roboto", sans-serif;
}
a {
  color: rgb(179, 116, 179);
}

.weatherApp {
  background-color: rgb(255, 255, 255);
  border-radius: 16px;
  padding: 30px;
  max-width: 600px;
  margin: 45px auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
header {
  border-bottom: 1px solid rgba(252, 224, 228, 0.445);
  padding: 0 0 30px 0;
}
.search-form-input {
  background-color: rgba(252, 224, 228, 0.445);
  border: none;
  border-radius: 6px;
  width: 80%;
  padding: 15px 20px;
  font-size: 16px;
}
.search-form-button {
  background-color: rgb(179, 116, 179);
  padding: 15px 30px;
  border: none;
  border-radius: 6px;
  color: white;
  margin-left: 5px;
  font-size: 16px;
  cursor: pointer;
}

main {
  padding: 30px 0;
}

.weather-app-city {
  font-size: 38px;
  margin: 0;
  line-height: 28px;
}

.weather-app-details {
  line-height: 26px;
  font-size: 16px;
  color: rgb(0, 0, 0, 0.6);
  margin: 5px 0 0 0;
}

.weather-app-data {
  display: flex;
  justify-content: space-between;
}
.weather-app-details strong {
  color: #f65382;
}

.weather-app-temperature {
  display: flex;
  align-items: center;
  font-size: 48px;
}

.weather-app-icon {
  font-size: 48px;
  margin-right: 10px;
}

.weather-app-number {
  font-weight: bold;
  font-size: 88px;
}

.weather-app-unit {
  font-size: 28px;
  margin-left: 5px;
  align-self: flex-start;
  margin-top: 15px;
}
.weather-app-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}
.weather-app-forecast-date {
  text-align: center;
  font-size: 16px;
  color: rgb(0, 0, 0, 0.6);
  line-height: 20px;
  margin-bottom: 10px;
}
.weather-app-forecast-icon {
  text-align: center;
  width: 88px;
  height: 88px;
  display: block;
  margin: 0 auto;
}

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

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

footer {
  border-top: 1px solid rgba(252, 224, 228, 0.445);
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 14px;
  color: rgb(0, 0, 0, 0.6);
}
