* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: monospace;
}

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
body::-webkit-scrollbar, html::-webkit-scrollbar {
  display: none;
}

main {
  cursor: default;
  position: relative;
  z-index: 1;
  text-align: center;
  color: rgb(213, 213, 213);
  font-size: 2rem;
  padding: 20px;
}

#bg-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
}
#bg-container video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(80%);
}

.weather-container {
  position: relative;
  width: 60%;
  max-width: 800px;
  min-height: 200px;
  padding: 30px;
  background-color: rgba(3, 102, 249, 0.181);
  border-radius: 40px;
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.629);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.251);
  text-align: center;
  margin: 50px auto;
}
@media (max-width: 600px) {
  .weather-container {
    padding: 10px;
    width: 95%;
  }
}

.search-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
}
.search-box input {
  width: 60%;
  padding: 7px;
  border: none;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
}
.search-box input:hover {
  transform: scale(1.03);
}
.search-box button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: rgb(213, 213, 213);
}
.search-box button:hover {
  transform: scale(1.3);
}
@media (max-width: 600px) {
  .search-box {
    margin-top: 20px;
  }
  .search-box input {
    width: 80%;
  }
}

.weather-info {
  margin: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
}
.weather-info .errorMessage {
  font-size: 38px;
  padding: 5px;
  margin-top: 20px;
  margin: auto;
}
@media (max-width: 600px) {
  .weather-info .errorMessage {
    font-size: 25px;
    margin-top: 50px;
  }
}
.weather-info .weather-icon-container {
  width: 50%;
  justify-content: center;
}
.weather-info .weather-icon-container .weather-icon {
  width: 70%;
  height: auto;
}
.weather-info .weather-icon-container .weather-icon:hover {
  transform: scale(1.08);
}
.weather-info .weather-info-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
}
.weather-info .weather-info-container .temperature {
  font-size: 80px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .weather-info .weather-info-container .temperature {
    font-size: 60px;
  }
}
.weather-info .weather-info-container .location {
  font-size: 18px;
}
.weather-info .weather-info-container .condition {
  font-size: 22px;
  opacity: 0.8;
}
.weather-info .weather-info-container .extra-info {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-size: 16px;
  margin-top: 20px;
  opacity: 0.8;
}
.weather-info .weather-info-container .extra-info img {
  width: 30px;
  height: auto;
}
.weather-info .weather-info-container .extra-info img:hover {
  transform: scale(1.3);
}
@media (max-width: 600px) {
  .weather-info {
    flex-direction: column;
    gap: 5px;
  }
}

.forecast {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 10px;
  margin-top: 50px;
  text-align: center;
  margin-bottom: 10px;
}
.forecast .days {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 16px;
}
.forecast .days img {
  width: 50px;
  height: auto;
}
.forecast .days img:hover {
  transform: scale(1.3);
}

.favs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
  text-align: center;
  margin: 0;
  padding: 10px;
}
.favs .fav-box {
  display: flex;
  justify-content: space-between;
  padding-right: 30px;
  margin: 10px;
}
.favs .fav-box p {
  font-size: 2vh;
  padding-left: 40px;
}
.favs .fav-box button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: rgb(213, 213, 213);
}
.favs .fav-box button:hover {
  transform: scale(1.3);
}
.favs .fav-container {
  max-width: 500px;
  padding: 0;
  background-color: rgba(3, 102, 249, 0.181);
  border-radius: 40px;
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.629);
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.251);
  text-align: center;
  margin: 10px auto;
}
@media (max-width: 600px) {
  .favs .fav-container {
    padding: 10px;
    width: 90%;
  }
}

.fav-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.fav-info .fav-icon-container {
  width: 40%;
  justify-content: center;
}
.fav-info .fav-icon-container .fav-icon {
  width: 60%;
  height: auto;
}
.fav-info .fav-icon-container .fav-icon:hover {
  transform: scale(1.08);
}
.fav-info .fav-info-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 50%;
}
.fav-info .fav-info-container .fav-temperature {
  font-size: 40px;
  font-weight: bold;
}
@media (max-width: 600px) {
  .fav-info .fav-info-container .fav-temperature {
    font-size: 30px;
  }
}
.fav-info .fav-info-container .fav-location {
  font-size: 10px;
}
.fav-info .fav-info-container .fav-condition {
  font-size: 12px;
  opacity: 0.8;
}
.fav-info .fav-info-container .fav-extra-info {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 8px;
  margin-top: 15px;
  margin-bottom: 15px;
  opacity: 0.8;
}
.fav-info .fav-info-container .fav-extra-info img {
  width: 20px;
  height: auto;
}
.fav-info .fav-info-container .fav-extra-info img:hover {
  transform: scale(1.3);
}
@media (max-width: 600px) {
  .fav-info {
    flex-direction: column;
    width: 100%;
    gap: 5px;
  }
}

/*# sourceMappingURL=weather.css.map */
