/* body styling */
body {
  background: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
  font-family: "Roboto", sans-serif;
}

/* header section styling */
header {
  border-top: #eceff7;
  padding: 10px 0;
}
.wrapper {
  background-color: #fff;
  margin: 40px auto;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  box-shadow: 10px 5px 5px rgba(108, 109, 255);
}
.weather-image {
  display: block;
  margin: 10px auto 0 auto;
  width: 100px;
  height: 100px;
}
.search-form-input {
  background-color: #eceff7;
  border-radius: 8px;
  border: none;
  padding: 10px 20px;
  width: 75%;
  font-size: 18px;
}
.search-button {
  background-color: rgb(0, 154, 255);
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  margin-left: 5px;
  cursor: pointer;
}
.search-button:hover {
  background-color: rgb(150, 154, 255);
}
/* main section styling */
main {
  padding: 30px 0;
}
.current-weather-details {
  display: flex;
  justify-content: space-between;
}
.current-weather-city {
  margin: 0;
  font-size: 38px;
  line-height: 48px;
}
.current-weather-info {
  font-size: 16px;
  line-height: 20px;
}
.current-weather-info strong {
  color: rgb(0, 154, 255);
}
.current-weather-status {
  display: flex;
  justify-content: space-between;
}
.current-weather-icon {
  width: 88px;
  height: 88px;
}
.current-weather-temperature-value {
  font-size: 88px;
  font-weight: bold;
  line-height: 88px;
}
.current-weather-unit {
  font-size: 28px;
  margin-top: 0;
}
/* forecast styling */
.weather-forecast-day {
  font-size: 16px;
  color: #202124;
  padding-top: 7px;
  line-height: 15px;
  opacity: 0.5;
}
.forecast-icon {
  margin: 5px auto;
  width: 48px;
  height: 48px;
  line-height: 1;
  text-align: center;
}
.weather-forecast-temperature {
  display: flex;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  line-height: 15px;
  margin: 5px auto;
}
.weather-forecast-temperature-max {
  color: #202124;
  padding-right: 5px;
}
.weather-forecast-temperature-min {
  color: #202124;
  opacity: 0.5;
}
/* footer section styling */
a {
  color: rgb(0, 154, 255);
}
footer {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  border-top: #eceff7;
  padding: 10px 0;
  color: rgba(0, 0, 0, 0.6);
}
