@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&display=swap');

html {
    box-sizing: border-box;
  }
  
  body {
    margin: 0;
    background-color: rgb(250, 250, 250);
    color: rgb(30, 30, 30);
    font-family: 'Caveat', cursive, sans-serif;
    font-size: 1.25rem;
  }
  
  .blurred {
    filter: blur(3px);
    overflow: hidden;
  }
  .daytime {
    background: linear-gradient(90deg,rgb(139, 187, 226), rgb(83, 163, 228));
  }

  .nighttime {
    background: linear-gradient(90deg, rgb(42, 73, 139), rgb(44, 96, 207));
    color: rgb(250, 250, 250);;
  }
  
  .header {
    display: flex;
    align-items: center;
  }
  
  .header-left {
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: center;
    margin: 0.5rem;
    padding: 0.5rem;
    border-right: 2px solid rgb(30, 30, 30);
  }
  
  .weather-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
  }
  
  .weather-icon.large {
    width: 150px;
    height: 150px;
  }
  
  .header-current-temp {
    font-size: 4rem;
    margin-left: 1rem;
  }
  
  .header-right {
    display: grid;
    width: 50%;
    justify-content: space-around;
    gap: 0.5rem;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(2, auto);
  }
  
  .info-group {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .label {
    text-transform: uppercase;
    font-weight: bold;
  }
  
  .value-sub-info {
    font-weight: lighter;
    font-size: 1.25rem;
  }
  
  .day-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, 90px);
    gap: 1rem;
    justify-content: center;
    padding: 1rem;
  }
  
  .day-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgb(30, 30, 30);
    border-radius: 0.5rem;
    padding: 1rem;
  }
  
  .day-card-date {
    font-size: 1.25rem;
    margin-top: 0.5rem;
  }
  
  .hour-section {
    width: 100%;
    text-align: center;
    border-spacing: 0;
  }
  
  .hour-row {
    background-color: rgb(95, 158, 210);
  }
  
  .hour-row:nth-child(2n) {
    background-color: rgb(63, 135, 194);
  }
  
  .hour-row > td {
    padding: 0.25rem 0.5rem;
  }