 
header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 4rem !important;
    gap:2rem;
    align-items: center;
}

.hello {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
}

.intro {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-content: center;
    height: 40px;
    justify-content: center;
}

.intro h2{
    margin-bottom: 0;
}

.pic {
    width: 40px;
    height: 40px;
    border-radius: 0.75rem;
}

::marker {
    color: var(--red);
    font-size: 1rem;
    width: 102px;
}
 
 .toggle-btn, .now-link {
      width: 40px;
      height: 40px;
      border-radius: 0.75rem;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      border-bottom: none;
  }

  .toggle-btn:hover, .now-link:hover {
      background-color: var(--lightest);
      border-bottom: none;
  }

  .icon {
      width: 16px;
      height: 16px;
      transition: all 0.3s ease;
      filter: brightness(0) saturate(100%);
  }

  .icon.moon {
      opacity: 1;
  }

  .icon.sun {
      opacity: 0;
      position: absolute;
  }

  [data-theme="light"] .icon.moon {
      filter: brightness(0) saturate(100%) invert(20%) sepia(2%) saturate(1032%) hue-rotate(314deg) brightness(91%) contrast(86%);
      /* --dark color */
  }

  [data-theme="dark"] .icon.moon {
      opacity: 0;
  }

  [data-theme="dark"] .icon.sun {
      opacity: 1;
      filter: brightness(0) saturate(100%) invert(86%) sepia(5%) saturate(278%) hue-rotate(314deg) brightness(99%) contrast(90%);
      /* --dark color */
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0rem;
}


.now-link:hover {
    background-color: var(--lightest);
    border-bottom: none;
}

.now-icon {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%);
}

[data-theme="light"] .now-icon {
    filter: brightness(0) saturate(100%) invert(20%) sepia(2%) saturate(1032%) hue-rotate(314deg) brightness(91%) contrast(86%);

}

[data-theme="dark"] .now-icon {
    filter: brightness(0) saturate(100%) invert(86%) sepia(5%) saturate(278%) hue-rotate(314deg) brightness(99%) contrast(90%);
  
}

@media (max-width: 576px) { 
    header{
         gap:0.25rem
    }

    .now-link, .toggle-btn{
        width: 32px;
        height: 32px;
        border-radius: 0.5rem;
    }
}