* {
  font-family: sans-serif;
  box-sizing: border-box;
}
body {
  background: #500175;
  text-align: center;
}
input {
  background-color: #9D4EC2;
  margin-top: 30px;
  padding: 11px;
  font-size: 20px;
  border-bottom: 2px solid orange;
  border-radius: 15px 0 25px 0;
}

.place {
  font-size: 35px;
}
.temp {
  font-weight: 900;
  font-size: 65px;
  text-shadow: 7px 5px 1px black;
}

#cloud {
  font-size: 36px;
  font-style:italic;
}

#p {
  font-size: 15px;
}
.place, #p, .temp, #cloud{
  margin-top: 20px;
  color: white;
}

#humidity, #wind {
  font-size: 20px;
  margin-top: 10px;
  color: rgb(202, 202, 202);
}
#errorMsg {
  color: #ff3c3c;
  font-weight: bold;
  margin-top: 10px;
}
#forecast {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 25px;
}
.forecast-card {
  background: #7c3aed;
  margin: 7px;
  padding: 10px;
  border-radius: 15px;
  color: #fff;
  width: 120px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  text-align: center;
}
.forecast-card img {
  width: 45px;
}
