body {
  background: linear-gradient(to top, #c471f5 0%, #fa71cd 100%);
}
header {
  padding: 0 0 10px 0;
}
main {
  padding: 30px;
}
.weather-app {
  border: 1.3px solid #f99fd8;
  opacity: 1;
  max-width: 600px;
  margin: 30px auto;
  box-shadow: 0 30px 50px rgb(65, 50, 100, 0.08);
  border-radius: 5px;
  padding: 20px;
}
.today {
  font-weight: bolder;
}
h1 {
  color: rgb(244, 247, 249);
  font-family: "Roboto", sans-serif;
  padding: 5px 0 30px 0;
  font-size: 38px;
  font-weight: 300;
  padding-top: 5px;
  margin-top: 5px;
}
.search-button {
  background: rgb(145, 102, 185);
  padding: 12px 18px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  color: white;
}
.search-form {
  margin-bottom: 10px;
  padding-top: 30px;
}
.search-form-input {
  background: rgb(238, 146, 243);
  border: none;
  border-radius: 10px;
  width: 60%;
  font-size: 16px;
  padding: 12px 18px;
  margin-left: 30px;
}
.temp {
  display: flex;
  justify-content: space-evenly;
}
.icon {
  height: 88px;
  margin-top: 5px;
}
.temperature {
  font-weight: lighter;
  font-family: "Roboto", sans-serif;

  font-size: 68px;
  color: rgb(252, 244, 244);
  line-height: 98px;
}
.hum {
  font-weight: bold;
  color: #ee2784;
}
.wind {
  font-weight: bold;
  color: #ee2784;
}
.units {
  margin-top: 15px;
  font-weight: lighter;
  margin-left: 4px;
  font-size: 50px;
  color: rgb(246, 248, 250);
}
.current-city {
  text-align: center;
  display: block;
  padding-top: 0;
  margin-top: 20px auto;
}

.current-weather {
  font-weight: 300;
  display: flex;
  margin-top: 20px;
}
.weather-data {
  display: flex;
  font-family: "Roboto", sans-serif;
  justify-content: space-between;
  color: rgb(248, 251, 253);
}
a {
  color: rgb(218, 189, 245);
}
.weather-forecast {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #f4f1f4;
  padding: 20px 0 0 0;
}

.weather-forecast-date {
  text-align: center;
  color: white;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

.weather-forecast-icon {
  max-width: 50px;
  display: block;
  margin: 0 auto;
}
.weather-forecast-temperatures {
  text-align: center;
  color: #ffcffb;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

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

footer {
  border-top: 1px solid #c157b7;
  padding: 20px 0 0 0;
  text-align: center;
  font-size: 13px;
  color: rgb(0, 0, 0, 0.6);
}
