.skills-row{
    padding-bottom: 50px;
}

.skills-title-main{
    margin-top: 20px;
    font-size: 30px;
    
}

body.dark .skills-title-main{
    color: #fff;
}

.skills-content-container{
    padding-top: 20px;

}

body.dark .skills-title{
    color: #fff;
}


.skills-title{
    font-size: 16px;
}

.skills-list{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap:10px;
}

.skill{
    font-family: "Montserrat";
    font-size: 16px;
    font-weight: 400;
    color: rgb(80, 78, 112);

}

body.dark .skill{
    color: #fff;
}


/*  Toggler */
/*  Toggler */
/*  Toggler */


.checkbox {
    opacity: 0;
    position: absolute;
  }
  
  .checkbox-label {
    background-color: #111;
    width: 50px;
    height: 26px;
    border-radius: 50px;
    position: relative;
    padding: 5px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  body.dark .checkbox-label {
      background-color: rgb(46, 43, 43);
  }
  
  .fa-moon {color: #f1c40f;}
  
  .fa-sun {color: #f39c12;}
  
  .checkbox-label .ball {
    background-color: #fff;
    width: 22px;
    height: 22px;
    position: absolute;
    left: 2px;
    top: 2px;
    border-radius: 50%;
    transition: transform 0.2s linear;
  }
  
  .checkbox:checked + .checkbox-label .ball {
    transform: translateX(24px);
  }
  
  
  
  
  
  
  
  
  
  /*  Support me if you like it */
  .support {
      position: absolute;
      right: 20px;
      bottom: 20px;
  }
  
  .support a {
    color: #455583;
    font-size: 32px;
    backface-visibility: hidden;
    display: inline-block;
    transition: transform 0.2s ease;
  }
  
  .support a:hover{
    transform: scale(1.1);
  }