body {
  background: #f9f7fe;
  font-family: 'Roboto', sans-serif;
}

a {
  color: #e1d5e9;
}

.weather-app {
  background-image: linear-gradient(
      145deg,
      rgba(232, 87, 237, 0.15) 0%,
      rgba(109, 137, 69, 0.15) 100%
    ),
    linear-gradient(75deg, rgba(33, 139, 184, 0.699), rgba(0, 241, 181, 0.573));
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

header {
  border-bottom: 1px solid #f9f7fe;
  padding-bottom: 30px;
}

.search-input {
  background-color: #f9f7fe;
  border: none;
  color: rgb(38, 90, 182);
  font-size: 16px;
  padding: 20px;
  width: 60%;
  border-radius: 6px;
}

.search-button {
  margin-left: 25px;
  font-size: 16px;
  background-color: #f9f7fe;
  color: #63528d;
  border: none;
  padding: 20px;
  line-height: 1;
  border-radius: 5px;
  width: 170px;
  box-shadow: -6px 6px #875df18b;
  cursor: pointer;
  border: 1px solid rgba(26, 55, 104, 0.092);
  transition: 0.1s ease-in-out;
}
.search-button:active {
  box-shadow: 0 0 #f9f7fe;
  transform: translate(-6px, 6px);
}

main {
  padding: 30px 0;
}

.current-temperature {
  font-size: 48px;
  display: flex;
}

.current-weather {
  display: flex;
  justify-content: space-between;
}

.current-city {
  font-size: 38px;
  font-weight: 900;
  margin: 0;
  color: #f8f8f8;
}
.current-details {
  color: rgb(197, 226, 229);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.current-details strong {
  color: #ffffff;
}

.current-temperature-icon {
  width: 88px;
  height: 88px;
  margin-top: 22px;
}

.current-temperature-value {
  font-size: 100px;
  font-weight: bold;
  color: #f5f5f5;
}

.current-temperature-unit {
  font-size: 33px;
  margin-top: 26px;
  color: #fbfbfb;
}

.weather-forecast {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}

.weather-forecast-date {
  text-align: center;
  color: #ffffffd0;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}

.weather-forecast-icon {
  width: 88px;
  height: 88px;
  display: block;
  margin: 0 auto;
}
.weather-forecast-temperatures {
  text-align: center;
  color: #ffffff;
  margin-top: 10px;
  display: flex;
  justify-content: center;
}

.weather-forecast-temperature1 {
  padding: 0 10px;
  color: #ffffff;
}

.weather-forecast-temperature2 {
  padding: 0 10px;
  color: #ffffffd0;
}

footer {
  border-top: 1px solid #f9f7fe;
  text-align: center;
  padding-top: 15px;

  color: rgba(247, 247, 249, 0.842);
}

footer a {
  color: #7749bb;
}

/* Signature */
.signature {
  width: 100%;
  position: absolute;
  bottom: 0;
  margin-bottom: 180px;
}
.signature p {
  font-size: 1.2rem;
  text-align: center;
}
.signature p i {
  color: rgb(145, 33, 198);
}
.signature p span {
  background-image: linear-gradient(144deg, #00bbce 10%, #1296e7 20%, #b822de);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.signature p span a {
  text-decoration: none;
}

.pulse {
  transform-origin: 70% 70%;
  animation-name: pulse-animation;
  animation-duration: 2s;
  animation-timing-function: linear;
}

@media only screen and (max-width: 450px) {
  .footer p {
    margin: 0 1rem;
    font-size: 1.2rem;
  }
}

/* Animations */

@keyframes is-gx {
  0%,
  10%,
  100% {
    width: 400px;
  }
  30%,
  50% {
    width: 500px;
  }
}

@keyframes pulse-animation {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.08);
  }
  50% {
    transform: scale(1);
  }
  60% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.05);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
