@import url(./color.css);


  
   #tooltip{
      position: relative;
      cursor: pointer;
  
   }
   #tooltip-msg{
      position: absolute;
      left: 50%;
      top: 10px;
      font-size: 13px;
      transform: translateX(-90%);
      background-color: var(--tertiary);
      color: var(--color-tip);
      white-space: nowrap;
      padding: 3px 10px;
      border-radius: 7px;
      visibility: hidden;
      opacity: 0;
      transition: opacity 0.5s ease;
  
   }
  
   #tooltip-msg::before{
      content: "";
      position: absolute;
  
   }
  
   #tooltip:hover #tooltip-msg{
            top: -130%;
            visibility: visible;
            opacity: 1;
   }
  
  
  
    .desktop-nav {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 36px;
      padding-right: 3rem;
    }
    .desktop-nav .nav-link {
      color: var(--tertiary);
      font-weight: 700;
    }
    .desktop-nav .nav-link:hover {
      color: var(--primary);
    }
  
     /* sponser-me  */
  
  .sponser-me{
    transition-property: var(--transition-property-common);
    transition-duration: var(--transition-duration-fast);
    transition-timing-function: var(--transition-easing-ease-out);
    cursor: pointer;
    -webkit-text-decoration: none;
    text-decoration: none;
    outline: 2px solid transparent;
    outline-offset: 2px;
    color:#fff;
    position: absolute;
    top: 7%;
    left: 1%;
    background-image: linear-gradient(to left, #975A16 ,#C53030);
    /* background-image: linear-gradient(to left,  hsl(218, 23%, 23%),rgba(135,100,255,.9)); */
    padding: 7px 10px;
    border-radius: 7px;
    font-weight: 500;
  }
  
  .sponser-me:hover{
    background-image: linear-gradient(to left,#C53030, #975A16 );
  }

  
  @media screen and (max-width: 580px) {
    .sponser-me{
      top: 10%;
  
    }
  }
  
  
  .progressbar .bar {
    background:var(--primary);
  }


  .progress-bar {
    background: linear-gradient(to right, var(--secondary) var(--scroll), transparent 0);
    background-repeat: no-repeat;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    z-index: 1;
}

.emoji {
  display: inline-block !important;
}

.footer-main {
  border-top: 1px solid #ededed;
  padding: 40px 0;
  margin: 40px 0 -35px;
  color: #483737;
  font-weight: 300;
  text-align: center;
  position: relative;
  background: var(--body-color);
}

li{
  color: var(--text-color) ;
}

.things-i-do>li>details>summary,
.project-categories>li>details>summary {
    color: var(--title-color);
    cursor: pointer;
    cursor: hand
}

.footer-main>.link {
  display: inline
}

.footer-main>.link>.icon {
  width: 15px !important;
  fill: #483737 !important;
  transition: ease-in-out all .3s;
  position: relative;
  top: 3px;
  display: inherit;
  margin: 0
}

