footer {
  border-top: 1px solid #f9f7fe;
  text-align: center;
  padding-top: 15px;
  color: rgba(39, 33, 66, 0.4);
}
a {
  color: lightpink;
}
body {
  background-color: rgb(250, 235, 246);
  font-family: "Indie Flower", cursive;
  font-weight: 400;
  font-style: normal;
}

.main-body {
  background-color: white;
  margin: 35px auto;
  box-shadow: 0 30px 50px rgba(65, 50, 100, 0.08);
  border-radius: 10px;
  padding: 30px;
  max-width: 1000px;
}

.search-bar {
  font-family: "Indie Flower", cursive;
  background-color: white;
  border: 0.5px solid #d4d3d9;
  border-radius: 5px;
  padding: 10px;
  width: 80%;
  color: darkgray;
  font-size: large;
}

.search-button {
  background-color: #f77cd6;
  border: none;
  border-radius: 5px;
  color: #f9f7fe;
  padding: 10px 15px;
  width: 15%;
  font-family: "Indie Flower", cursive;
  font-size: larger;
}

header {
  padding: 20px 0;
}

.city {
  font-family: "Indie Flower", cursive;
  font-size: 40px;
  color: black;
  text-align: left;
  font-weight: bolder;
}

.date-and-time {
  font-family: "Indie Flower", cursive;
  font-size: 25px;
  text-align: left;
  color: #f54cc8;
}

.current-weather {
  display: flex;
  justify-content: center;
}
.current-temp {
  font-size: 60px;
}

.temp-unit {
  font-size: 30px;
  position: relative;
  top: 5px;
}
.weather-icon {
  position: relative;
  padding-left: 10px;
  top: -10px;
  width: 70px;
  height: 60px;
}

.description {
  font-size: 30px;
  color: black;
  text-align: center;
}

.weather-details {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-evenly;
  font-size: 30px;
}

#humidity-icon {
  font-variation-settings: "FILL" 00, "wght" 400, "GRAD" 00, "opsz" 24;
  font-size: 30px;
}

#air-icon {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
  font-size: 30px;
}

h2 {
  font-family: "Indie Flower", cursive;
  font-size: 25px;
  text-align: left;
  color: #f54cc8;
}

.forecast-day {
  display: flex;
  justify-content: space-between;
  padding-left: 35px;
  margin-top: 20px;
}
.forecast-max-temp {
  font-size: 30px;
  color: #f902b7;
  position: relative;
  top: 30px;
  left: -25px;
}
.forecat-temp-unit-max {
  font-size: 20px;
  color: #f902b7;
  position: relative;
  top: -15px;
  left: 10px;
}
.forecast-min-temp {
  font-size: 30px;
  color: #f393da;
  position: relative;
  top: 70px;
  left: -60px;
}
.forecat-temp-unit-min {
  font-size: 20px;
  color: #f393da;
  position: relative;
  top: -8px;
  left: 3px;
}

.forecast-date {
  font-size: 25px;
  color: black;
  position: relative;
  left: -60px;
  top: 50px;
}

.forecast-icon {
  position: relative;
  top: -50px;
  width: 20px;
}
