/* body */
body{
background: linear-gradient(107deg, rgb(255, 67, 5) 11.1%, rgb(245, 135, 0) 95.3%);
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
/* weather app */
.weather-app {
  color: white;
  background-image: url("../images/body-sunset-background-image.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  width: 90%;
  max-width: 700px;
  margin: 10px auto;
  padding: 20px;
  border-radius: 10px;
}
/* search-engine */
.search-input {
  font-size: 15px;
  border: 5 orangered;
  border-radius: 10px;
  padding: 6px;
  height: 40px;
  width: 450px;
}
.search-button {
  font-size: 15px;
  border-radius: 10px;
  color: white;
  background: orangered;
  padding: 6px;
  height: 40px;
  width: 100px;
}
/* current */
.current-city {
  font-size: 30px;
  margin-bottom: 2px;
}
.current-date {
  font-size: 20px;
  margin-top: 0;
}
#icon{
  display: inline;
  margin: 0 auto;
}
.current-temperature {
  margin: 0;
  font-size: 45px;
  text-align: center;
  color: orangered;
}
.current-temperature-unit {
  font-size: 50px;
  text-align: center;
  margin: 0;
  
}
.weather-conditions {
  margin: 0;
  font-size: 30px
}
/* current details */
.current-details {
  margin: 20px auto;
  width: 200px;
  max-width: 500px;
  background-color: rgba(255, 255, 255, 0.8);
  color: rgb(39, 39, 59);
  padding: 20px;
  border-radius: 10px;
  font-size: 20px;
  text-align: center;
}
/* forecast */
.forecast{
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  color: rgb(39, 39, 59);
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  border-radius: 10px;
}
.weather-icon{
  width: 70px;
}
.low-temp, .max-temp{
  display: flex;
  color: orangered;
}
.low-temp{
  color: orange;
}
/* links */
footer{
  margin-top: 20px;
  font-size: 18px;
  background-color: rgb(37, 36, 36);
}
a{
  color: orangered;
  text-decoration-line: none;
}
