body {
  background: #f9f7fe;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
a {
  color: #885df1;
}
header {
  border-bottom: 1px solid #f9f7fe;
  padding-bottom: 30px;
}
main {
  padding: 30px 0;
}
.weather-app {
  border: 1 solid #f9f7fe;
  border-radius: 16px;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  margin: 45px auto;
  padding: 30px;
  background: rgb(255, 255, 255);
  max-width: 600px;
}
.current-weather {
  display: flex;
  justify-content: space-between;
}
.text-input {
  background: #f9f7fe;
  width: 80%;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  padding: 15px 20px;
}
.submit-input {
  border: none;
  border-radius: 6px;
  background-color: #885df1;
  padding: 15px 20px;
  font-size: 16px;
  margin-left: 5px;
  color: #ffffff;
  line-height: 1;
}
.current-city {
  font-size: 36px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.current-date {
  color: #666666;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.current-humidity {
  color: rgb(255, 0, 157);
}
.current-wind {
  color: rgb(255, 0, 157);
}
.current-temperature {
  position: relative;
  top: 20px;
  right: 20px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.current-temprature-icon {
  font-size: 90px;
  position: relative;
  line-height: 20px;
}
.current-temperature-value {
  font-size: 88px;
  font-weight: 700;
  position: relative;
  top: -20px;
}
.current-temperature-unit {
  font-size: 30px;
  position: relative;
  top: -60px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
.weather-forecast {
  margin: 30px;
  display: flex;
  justify-content: space-around;
  font-size: 16px;
}
.weather-forecast-date {
  text-align: center;
}
.weather-forecast-day {
  color: #666666;
  margin-bottom: 10px;
}
.weather-forecast-icon {
  font-size: 44px;
}
.weather-forecast-temperatures {
  display: flex;
  justify-content: center;
  color: rgb(255, 0, 157);
  text-align: center;
}
.weather-forecast-temperature {
  padding: 5px;
}
footer {
  font-size: 14px;
  text-align: center;
  border-top: 1px solid #f9f7fe;
  padding: 30px 0 0 0;
  color: #666666;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}
