body {
  background: linear-gradient(to top, #09203f 0%, #537895 100%);
  min-height: 100vh;
  font-family: "Roboto", sans-serif;
  margin-top: 30px;
}

/* Header section */
.current-information {
  color: rgb(151, 186, 251);
  font-size: 16px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

#location-icon,
#calendar-icon,
#time-icon {
  width: 20px;
  height: 20px;
  position: relative;
  top: 5px;
}

/* Forecast section */
.forecast-weather-box {
  width: 80%;
  margin: 15px auto;
  color: rgb(151, 186, 251);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.weather-forecast-day {
  text-align: center;
  padding-bottom: 0;
  box-shadow: 5px 5px 8px rgba(151, 186, 251, 0.04);
  padding: 8px;
  border-radius: 20px;
  transition: all 200ms ease-in-out;
}

.weather-forecast-day:hover {
  transform: scale(1.3);
}

.weather-forecast-date {
  font-size: 15px;
}

.forecast-weather-description {
  font-size: 12px;
}

.weather-forecast-temperatures {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 10px;
}

.weather-forecast-temperature {
  font-size: 13px;
  color: white;
}

.weather-forecast-icon {
  width: 50px;
  height: 50px;
  padding: 0;
  display: inline-block;
  margin: 0 auto;
}

/* Current weather box */
.current-weather-box {
  width: 60%;
  border-radius: 20px;
  box-shadow: 5px 5px 5px rgba(151, 186, 251, 0.15);
  color: rgb(151, 186, 251);
  padding: 10px;
  margin: 40px auto;
}

.current-weather-temperature {
  max-width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 120px;
}

.current-weather-temperature #unit {
  font-size: 35px;
  position: relative;
  top: 20px;
  left: -10px;
}

.current-weather-temperature #icon {
  display: inline-block;
  position: relative;
  bottom: -15px;
  right: 60px;
  margin-left: 0;
  padding: 0;
}

.current-location-icon {
  width: 60px;
  height: auto;
}

.current-weather-description #description {
  text-align: center;
  font-size: 20px;
  position: relative;
  margin-top: 0px;
  left: -30px;
}

.current-location .location {
  font-size: 22px;
  text-align: center;
  position: relative;
  left: -30px;
}

/* Humidity & Wind */
.humidity-wind {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 30px 0;
  position: relative;
  left: -30px;
}

#humidity-value,
#wind-speed {
  font-size: 20px;
}

#humidity-key-word,
#wind-speed-key-word {
  font-size: 10px;
  text-align: center;
  position: relative;
  left: 19px;
}

#wind-icon,
#humidity-icon {
  width: 20px;
  position: relative;
  bottom: -5px;
}

/* Search bar */
.search-input-form {
  text-align: center;
  margin-top: 25px;
}

#search-bar {
  max-width: 75%;
  padding: 15px;
  border-radius: 40px;
  font-size: 16px;
  border: 1px solid rgb(151, 186, 251);
  margin-right: 0;
  color: rgb(32, 59, 89);
}

#search-bar::placeholder {
  color: rgb(151, 186, 251);
  opacity: 1;
}

#search-bar:focus {
  outline: 2px solid rgb(151, 186, 251);
  outline-offset: 1px;
}

#search-button {
  padding: 15px;
  margin-left: 3px;
  border-radius: 40px;
  border: 1px solid rgb(151, 186, 251);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  background-color: rgb(32, 59, 89);
  color: rgb(151, 186, 251);
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

#search-button:hover {
  cursor: pointer;
  transform: scale(0.8);
}

/* Links */
a {
  display: inline-block;
  transition: all 0.3s ease;
  color: white;
}

a:hover {
  transform: scale(1.2);
  background-color: rgb(151, 186, 251);
  padding: 3px;
  border-radius: 5px;
}

/* Footer */
footer p {
  color: rgb(151, 186, 251);
  text-align: center;
  margin: 30px 0;
  font-size: 14px;
}