@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;700&display=swap");
.future-weather {
  margin: 0 auto;
}
.future-weather .next_5days {
  width: 90vw;
  margin: 0 auto;
  gap: 0.5rem;
  cursor: pointer;
}
.future-weather .next_5days li {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  list-style: none;
  text-align: center;
}
.future-weather .next_5days li .item_container * {
  color: #032539;
}
.future-weather .every_3hours {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.4);
  width: 90vw;
  display: flex;
  overflow-x: scroll;
  margin: 0;
  margin: 0 auto;
  margin-top: 0.5rem;
}
.future-weather .every_3hours li {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  list-style: none;
  text-align: center;
}
.future-weather .every_3hours li .el_container * {
  color: #032539;
}

@media (max-width: 478px) {
  .next_5days {
    width: 90vw;
  }
  .next_5days li {
    margin: 0.5rem;
  }
  .next_5days li .item_container {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
}
@media (min-width: 478px) and (max-width: 768px) {
  .next_5days {
    width: 90vw;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .every_3hours {
    width: 90vw;
  }
  .every_3hours li {
    margin: 0 1rem;
  }
}
@media (min-width: 769px) {
  .next_5days {
    width: 90vw;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .every_3hours {
    width: 90vw;
  }
  .every_3hours li {
    margin: 0 1rem;
  }
}
html {
  font-size: 62.5%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif, Arial, Helvetica;
}

body {
  background-image: url("../images/weatherBG.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

h1 {
  font-size: calc(2rem + (1vw - 0.72rem) * 2.1429);
  font-weight: 100;
}

h2 {
  font-size: calc(1.5rem + (1vw - 0.72rem) * 0.7143);
  font-weight: 100;
}

p {
  font-size: 1.2rem;
}

.input {
  font-size: 4rem;
  margin: 2vw auto;
  display: flex;
  justify-content: space-between;
  width: 90vw;
}
.input select {
  background-color: #fbf3f2;
  height: 4rem;
  width: 30rem;
  font-weight: 300;
  font-size: 2rem;
  border: none;
  border-radius: 5px;
}
.input input[type=text] {
  height: 4rem;
  width: 30rem;
  background-color: #fbf3f2;
  font-weight: 300;
  font-size: 2rem;
  border: none;
  border-radius: 5px;
}

.container {
  background-color: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  width: 90vw;
  margin: 0 auto;
}
.container #favorite {
  position: absolute;
  top: 10px;
  right: 3%;
}
.container .weather-data-container .date-item-left {
  text-align: center;
  margin: auto auto;
  padding: 4rem;
}
.container .weather-data-container .date-item-left #date {
  font-weight: 700;
  font-size: calc(4.8rem + (1vw - 0.64rem) * 0.7143);
  background: linear-gradient(-45deg, #fe9000, #f2eae8, #00748f, rgb(28, 213, 160));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-animation: font_gradient 3s ease infinite;
          animation: font_gradient 3s ease infinite;
}
.container .weather-data-container .date-item-right {
  text-align: center;
  margin: auto auto;
  padding: 4rem;
}
.container .weather-data-container .date-item-right .icon {
  text-align: center;
}
.container .weather-data-container .date-item-right .icon img {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-name: icon_moving;
          animation-name: icon_moving;
}
.container .weather-data-container .date-item-right .weather-item-container {
  display: flex;
  justify-content: center;
}
.container .weather-data-container .date-item-right .weather-item-container .weather-itme {
  text-align: center;
  margin: 2rem;
}
.container .weather-data-container .date-item-right .weather-item-container .weather-itme h2 {
  font-weight: 200;
}

.place-container {
  width: 90vw;
  margin: 0 auto;
  padding: 1rem 0;
}
.place-container h2 {
  color: #fa991c;
  display: inline-block;
}

@media (max-width: 768px) {
  .input {
    font-size: 1.5rem;
    margin: 2vw auto;
    display: flex;
    justify-content: space-between;
    width: 90vw;
  }
  .input select {
    color: #fa991c;
    background-color: #032539;
    height: 2rem;
    width: 10rem;
    font-weight: 200;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
  }
  .input input[type=text] {
    height: 2rem;
    width: 10rem;
    background-color: #fbf3f2;
    font-weight: 200;
    font-size: 1.3rem;
    border: none;
    border-radius: 5px;
  }

  h2 {
    color: #fff;
  }
}
@media (min-width: 768px) {
  .weather-data-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@-webkit-keyframes font_gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes font_gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@-webkit-keyframes icon_moving {
  0% {
    transform: scale(1, 1) translate(0%, -40%);
  }
  80% {
    transform: scale(1, 0.9) translate(0%, 0%);
  }
  100% {
    transform: scale(1.2, 0.8) translate(0%, 0%);
  }
}
@keyframes icon_moving {
  0% {
    transform: scale(1, 1) translate(0%, -40%);
  }
  80% {
    transform: scale(1, 0.9) translate(0%, 0%);
  }
  100% {
    transform: scale(1.2, 0.8) translate(0%, 0%);
  }
}/*# sourceMappingURL=index.css.map */