body {
  background-color: #f9f7fe;
  font-family: "Roboto", sans-serif;
}

a {
  color: #885df1;
}

.weather-app {
  background: rgb(223, 184, 234);
  max-width: 600px;
  margin: 45px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 16px;
  padding: 30px;
}

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

.search-form-input {
  background-color: rgb(198, 168, 207);
  border: none;
  border-radius: 6px;
  width: 80%;
  font-size: 16px;
  padding: 15px 20px;
}

.search-form-btn {
  background: #a75df1;
  padding: 15px 30px;
  border: none;
  font-size: 16px;
  margin-left: 5px;
  border-radius: 6px;
  color: white;
}

main {
  padding: 30px 0;
}

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

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

.weather-details {
  font-size: 16px;
  color: rgba(39, 33, 66, 0.4);
  line-height: 24px;
  font-weight: 500;
}

.weather-details strong {
  color: #f65282;
}

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

.weather-icon {
  font-size: 44px;
  margin-top: 22px;
}

.weather-temperature {
  font-size: 88px;
  margin-left: 10px;
  font-weight: bold;
}

.weatehr-unit {
  margin-top: 6px;
  font-size: 28px;
}

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

.weather-forecast-date{
  text-align: center;
  color: rgba(39, 33, 66, 0.4);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

.weather-forecast-icon{
  font-size: 38px;
  text-align: center;
}
.weather-forecast-temperature{
  padding: 0 10px;
}





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