@import url("https://fonts.googleapis.com/css2?family=Montserrat&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
}

@media (width > 768px) {
  html {
    font-size: 16px;
  }
}
@media (width <= 768px) {
  html {
    font-size: 12px;
  }
}

body {
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 32px 32px;
  background-repeat: repeat;
  background-position: center center;
}

main {
  width: 95%;
  max-width: 1200px;
  margin: 1.5rem auto;
}
main .section .section-title {
  font-size: 2rem;
}

@media (width <= 768px) {
  .section-title {
    text-align: center;
  }
}
.current-weather-section .current-weather-container {
  width: 100%;
  max-width: 500px;
  margin-block: 1rem 2rem;
  margin-inline: auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(160deg, #01487e 0%, rgb(0, 22, 40) 100%);
  color: white;
  box-shadow: 0.5rem 0.5rem 0 0 rgba(17, 17, 17, 0.3333333333);
}
.current-weather-section .current-weather-container .place .city {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.current-weather-section .current-weather-container .place .city .city-name {
  font-size: 2rem;
}
.current-weather-section .current-weather-container .place .city .favorite-star-box {
  width: 1.8rem;
  height: 1.8rem;
}
.current-weather-section .current-weather-container .place .city .favorite-star-box img {
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.current-weather-section .current-weather-container .place .country {
  display: flex;
  align-items: center;
}
.current-weather-section .current-weather-container .place .country .national-flag-box {
  width: 1.5rem;
  height: 1.5rem;
}
.current-weather-section .current-weather-container .place .country .national-flag-box img {
  width: 100%;
  height: 100%;
}
.current-weather-section .current-weather-container .current-weather {
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.current-weather-section .current-weather-container .current-weather .current-weather-text {
  position: absolute;
  inset: 15% auto auto 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
}
.current-weather-section .current-weather-container .current-weather .current-weather-detail .current-temperature {
  display: flex;
  align-items: flex-end;
  position: absolute;
  inset: auto auto 3% 50%;
  transform: translate(-50%, -50%);
}
.current-weather-section .current-weather-container .current-weather .current-weather-detail .current-temperature .current-temperature-text {
  font-size: 1.5rem;
}
.current-weather-section .current-weather-container .current-time {
  text-align: right;
}

@media (width <= 768px) {
  .current-weather-text {
    inset: 15% auto auto 50% !important;
  }
  .weather-icon {
    width: 140px;
  }
  .current-temperature {
    inset: auto auto -3% 50% !important;
  }
}/*# sourceMappingURL=current.css.map */