body {
  background-color: rgb(189, 218, 218);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-style: Thin;
}

.weather-app-box {
  background-color: aliceblue;
  max-width: 600px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
.search-form-input {
  background-color: rgb(224, 234, 234);
  border-color: aliceblue;
  width: 400px;
  padding: 11px;
  border-radius: 5px;
  font-size: 15px;
}
.search-button {
  background-color: rgb(104, 209, 209);
  border: none;
  border-radius: 4px;
  padding: 11px;
  font-size: 16px;
  color: azure;
  margin-left: 5px;
}
main {
  padding: 30px 0px;
}
.weather-app-city {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-style: Bold;
}
.emoji-temp-unit {
  display: flex;
}
.weather-emoji {
  width: 50px;
  height: 50px;
  padding-top: 5px;
  font-size: 5rem;
  animation: slight-move 2s infinite alternate ease-in-out;
}

@keyframes slight-move {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px); /* Move up slightly */
  }
  100% {
    transform: translateY(0);
  }
}

.current-temp {
  font-size: 50px;
  margin-left: 0px;
  font-weight: 600;
  font-style: bold;
}
.temp-unit {
  font-size: 20px;
  padding-top: 10px;
}
.weather-app-details {
  color: rgb(50, 96, 96);
}
.weather-app-details strong {
  color: rgb(19, 104, 165);
}

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

.forecast-day {
  text-align: center;
  color: rgb(27, 25, 25);
  font-size: 15px;
  line-height: 20px;
}
.forecast-icon img {
  width: 70%;
  display: block;
  margin: 0 auto;
}
.forecast-temps {
  text-align: center;
  color: rgb(19, 104, 165);
  margin-top: 10px;
  display: flex;
  justify-content: center;
}
.forecast-temp {
  padding: 0 10px;
}

footer {
  border-top: 1px solid rgb(224, 234, 234);
  padding: 30px 0 0 0;
  text-align: center;
  color: rgb(50, 96, 96);
  font-size: 14px;
}
a {
  color: rgb(30, 163, 163);
}
