* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  display: flex;
  padding: 0;
  margin: 0;
  height: 100vh;
}

.loader {
  fill: gray;
  width: 50px;
  animation: spinner 3s infinite linear;
}

@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
header {
  width: 30%;
  background-color: rgb(255, 255, 255);
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 75px;
  display: flex;
  flex-direction: column;
}
header hr {
  width: 100%;
  border: none;
  border-bottom: 1px solid lightgray;
}
header .mainContent {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
header .mainContent .statusToday {
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .mainContent .statusToday #todayImg {
  width: 100%;
}
header .mainContent #todayDegrees {
  height: 103px;
  font-size: 90px;
  font-weight: 200;
  display: flex;
}
header .mainContent #todayDegrees span {
  margin-top: 20px;
  font-weight: 500;
  font-size: 45px;
}
header .mainContent .dayHour {
  font-size: 26px;
  font-weight: 600;
  display: flex;
  gap: 10px;
}
header .mainContent .dayHour #todayHour {
  font-weight: 300;
  color: rgb(164, 164, 164);
}
header .details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
header .details > * {
  display: flex;
  gap: 10px;
}
header .details #city {
  background-size: cover;
  background-position: center;
  padding: 30px 40px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  justify-content: center;
  min-height: 90px;
}
header .details #city h2 {
  color: #f8f8f8;
  margin: 0;
  text-align: center;
}

main {
  background-color: #f8f8f8;
  width: 70%;
  padding: 100px 150px;
}
main #weekDays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
main #weekDays .day {
  padding: 20px 10px;
  min-height: 200px;
  background-color: white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
main #weekDays .day .nameWeekDay {
  margin: 0;
}
main #weekDays .day .dailyImg {
  width: 100%;
}
main #weekDays .day .degress {
  display: flex;
  align-items: baseline;
  gap: 5px;
}
main #weekDays .day .degress .maxDegree {
  font-size: 24px;
  font-weight: 600;
}
main #weekDays .day .degress .minDegree {
  font-size: 18px;
  color: rgb(166, 166, 166);
}
main .highlights h2 {
  margin-top: 50px;
  font-size: 32px;
}
main .highlights .stats {
  grid-template-columns: repeat(4, 1fr);
  display: grid;
  gap: 20px;
}
main .highlights .stats .statBox {
  padding: 20px;
  background-color: white;
  border-radius: 10px;
}
main .highlights .stats .statBox h3 {
  margin: 0;
}

@media (max-width: 1260px) {
  #weekDays {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}
@media (max-width: 900px) {
  body {
    flex-direction: column;
  }
  header, main {
    width: 100%;
    padding: 75px;
  }
}
@media (max-width: 768px) {
  .stats {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 500px) {
  #weekDays {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 480px) {
  header, main {
    padding: 30px;
  }
}/*# sourceMappingURL=main.css.map */