@import url("https://fonts.googleapis.com/css2?family=Lexend+Giga:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  box-shadow: none;
  padding: 0;
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
  border: none;
}
body {
  background-color: whitesmoke;
}
header {
  padding: 0 0 30px 0;
}
main {
  padding: 30px 0;
}
.weather-app {
  background: linear-gradient(125deg, lightcyan, lightcyan, cyan, darkcyan);
  max-width: 700px;
  margin: 45px auto;
  box-shadow: 0 30px 50px rgba(65, 56, 100, 0.08);
  border-radius: 15px;
  padding: 30px;
}
.search-input {
  background-color: lightcyan;
  border: none;
  border-radius: 5px;
  width: 80%;
  padding: 15px 20px;
  font-size: 16px;
}
.search-submit {
  background: lightslategray;
  padding: 15px 20px;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  margin-left: 5px;
}
.weather-data {
  display: flex;
  justify-content: space-between;
}
.cityname {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
}
.details {
  font-size: 16px;
  color: darkslategray;
  line-height: 20px;
  font-weight: 500;
}
.details strong {
  color: goldenrod;
  font-weight: 700;
}
.temp-container {
  display: flex;
}
.temperature {
  font-size: 85px;
  font-weight: 600;
  line-height: 88px;
  margin-left: 10px;
}
.icon {
  width: 100%;
}
.unit {
  font-size: 25px;
  margin-top: 5px;
  font-weight: 500;
}
.forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}
.forecast-date {
  text-align: center;
  color: lightslategray;
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
}
.forecast-icon {
  width: 80%;
  text-align: center;
  display: block;
  margin: 0 auto;
}
.forecast-tempurates {
  text-align: center;
  color: darkgoldenrod;
  display: flex;
  margin-top: 10px;
  justify-content: center;
}
.forecast-temp {
  padding: 0 10px;
}
.forecast-temp strong {
  font-weight: 700;
}
footer {
  padding: 30px 0 0 0;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: darkslategray;
}
