body {
  margin: 0px;
  padding-bottom: 25px;
  background-image: url(https://i.ibb.co/HpX6rsYn/pexels-blue-sky.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

header {
  background: rgb(216, 236, 251);
  background: linear-gradient(
    135deg,
    rgba(216, 236, 251, 1) 0%,
    rgba(122, 183, 241, 1) 50%,
    rgba(22, 155, 229, 1) 100%
  );
  padding: 10px;
  background-attachment: fixed;
  margin-bottom: 25px;
}

#date-and-time {
  color: white;
  font-family: "Poppins", serif;
  font-weight: 300;
  text-align: center;
  background-color: rgb(255, 255, 255, 0.25);
  border-radius: 5px;
  margin: 0px 37%;
  padding: 10px 15px;
}
#search-bar {
  border: 8px solid white;
  padding: 5px;
  border-radius: 4px;
  width: 400px;
  opacity: 75%;
}
#search-button {
  border: 10px solid #1199e3;
  background-color: #1199e3;
  margin: 10px;
  padding: 4px 12px;
  border-radius: 5px;
  color: white;
}
#search-button:hover {
  border: 10px solid #086ac0;
  background-color: #086ac0;
  transition: all 120ms ease-in-out;
}
.city-container {
  text-align: center;
  color: white;
}
#current-city {
  font-family: "Raleway", serif;
  font-weight: 200;
  font-size: 45px;
  margin-top: 10px;
  margin-bottom: 15px;
}
#temperature-unit {
  display: inline-flex;
  align-content: center;
  justify-content: center;
  margin: 0px 45%;
}
#current-temperature {
  font-weight: 300;
  font-size: 54px;
  margin-top: 0px;
  margin-bottom: 0px;
  font-family: "Poppins", serif;
  color: white;
}
.unit {
  font-family: "Poppins", serif;
  font-size: 24px;
  color: white;
  position: relative;
  top: 10px;
}
#feels-like {
  text-align: center;
  padding-bottom: 20px;
  font-family: "Poppins", serif;
}
#weather-description {
  margin-bottom: 5px;
  margin-top: 0px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
#weather-icon {
  height: 85px;
}
#weather-box {
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  max-width: 550px;
  font-family: "Raleway", serif;
}
.current-info {
  color: white;
}
#humidity-wind {
  text-align: center;
  padding: 20px 0px;
  border-top: 1px solid rgb(255, 255, 255, 0.4);
  border-bottom: 1px solid rgb(255, 255, 255, 0.4);
}
#weekly-forecast {
  color: white;
  display: flex;
  justify-content: center;
}
.forecast-date {
  text-align: center;
}

.forecast-icon {
  width: 60px;
}
.forecast-temperature {
  display: flex;
  justify-content: space-around;
  align-items: baseline;
}

.min {
  color: #65b4ef;
}

ul {
  list-style: none;
  padding: 0px;
}
li {
  padding: 0px 20px;
}

strong {
  color: #65b4ef;
  font-family: "Poppins", serif;
  font-weight: 600;
}
footer {
  font-size: 12px;
  text-align: center;
  padding: 20px 0px;
  border-top: 1px solid rgb(255, 255, 255, 0.4);
}
a {
  text-decoration: none;
  color: #1199e3;
}
a:hover {
  text-decoration: underline;
  color: #086ac0;
}
