@import url("https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  border: 0;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-image: url(../pics/mountains-medium.jpg);
  background-size: cover;
  color: hsl(0, 0%, 100%);
  font-family: "Poppins", sans-serif;
  display: grid;
  place-items: center;
  height: 100vh;
  -o-border-image: linear-gradient(hsla(0, 0%, 0%, 0.3), hsla(0, 0%, 0%, 0.3)) 1;
     border-image: linear-gradient(hsla(0, 0%, 0%, 0.3), hsla(0, 0%, 0%, 0.3)) fill 1;
}

.cards {
  border: solid;
  width: 23em;
  height: 32em;
  padding: 20px 23px;
  border-radius: 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.regular-txt {
  font-weight: 400;
}

.inputContainer {
  position: relative;
  margin: 0 0 25px 0;
}

.inputCity {
  width: 100%;
  padding: 15px 16px;
  border: 3px solid transparent;
  border-radius: 30em;
  background: rgba(0, 0, 0, 0.15);
  outline: none;
  font-weight: 500;
  transition: 0.25s border;
  color: rgba(255, 255, 255, 0.75);
  padding-right: 45px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.inputCity:focus {
  border: 3px solid rgba(255, 255, 255, 0.35);
}
.inputCity::-moz-placeholder {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}
.inputCity::placeholder {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
}

.search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.6);
}

.weather-info {
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
}

.location-date-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location {
  display: flex;
  align-items: center;
  gap: 6px;
}

.weather-summary-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.weather-summary-img {
  width: 120px;
  height: 120px;
}

.weather-summary-info {
  text-align: end;
}

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

.condition-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0 15px 0;
}
.condition-item span {
  font-size: 30px;
}

.forecast-items-container {
  display: flex;
  gap: 15px;
  overflow-x: scroll;
  overflow-y: hidden;
  padding: 0 0 12px 0;
}
.forecast-items-container::-webkit-scrollbar {
  height: 8px;
}
.forecast-items-container::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 99px;
}
.forecast-items-container::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 99px;
}

.forecast-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 100px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 20px;
  transition: 0.3s background;
}
.forecast-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.forecast-item-img {
  width: 50px;
  height: 50px;
}

.search-city-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.search-city-container img {
  width: 80%;
}

.search-city-msg-title {
  font-weight: 500;
}

.search-city-message {
  text-align: center;
}/*# sourceMappingURL=style.css.map */