body {
  background-color: #f9f7fe;
  font-family: "Handlee", cursive;
  font-weight: 400;
  font-style: normal;
}

header {
  border-bottom: 1.5px solid #f9f7fe;
  padding: 20px;
}
a {
  color: purple;
}

.main-info {
  background: white;
  max-width: 600px;
  margin: 50px auto;
  padding: 35px;
  box-shadow: 0px 30px 40px rgba(65, 50, 100, 0.1);
  border-radius: 15px;
}
.search-input {
  background-color: #f9f7fe;
  border: none;
  border-radius: 5px;
  width: 83%;
  padding: 15px;
  font-size: 15px;
}
.search-button {
  background-color: purple;
  border: none;
  border-radius: 5px;
  padding: 15px;

  cursor: pointer;
  font-size: 15px;
  color: white;
  margin-left: 4px;
}

main {
  padding-top: 30px;
}

.weather-data {
  display: flex;
  justify-content: space-between;
}
.weather-city {
  margin-top: 10px;
  font-size: 37px;
  line-height: 45px;
  font-weight: 600;
}
.weather-description {
  font-size: 15px;
  line-height: 18px;
  color: rgba(0, 0, 0, 0.6);
}

.desc-input {
  color: red;
}
.weather-temp {
  display: flex;
}
.weather-value {
  font-size: 80px;
  font-weight: bold;
  line-height: 88px;
}

.weather-emoji {
  width: 86px;
  height: 86px;
}
.weather-unit {
  margin-top: 5px;
  font-size: 27px;
}

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

.weather-forecast-date {
  text-align: center;
  font-size: 16px;
  color: rgba(39, 33, 65, 0.4);
  line-height: 20px;
  margin-bottom: 15px;
}
.weather-forecast-emoji {
  width: 88px;
  height: 88px;
  display: block;
  margin: 0 auto;
}
.weather-forecast-temps {
  color: red;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.weather-forecast-temp {
  padding: 0 10px;
}
footer {
  border-top: 1.5px solid #f9f7fe;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
}
