/*Skills*/

.nav-link{
    color: #00bcd4 !important;
    font-size: 1.2rem !important;
  }
  
  .nav-link:hover, .back a:hover{
    color: #9c27b0 !important;
  }

  .row-space h3{
    text-align: center;
    font-size: 2.2rem;
    font-weight: 900;
    text-decoration-line: underline;
    text-decoration-color: #ffffff;
  }


.box{
    background: #9c27b0 !important;
    color: beige;
    border-radius: 50%;
    height: 200px;
    width: 200px;
    margin: 50px 0;
    text-align: center;
}

.box p{
    font-weight: 700;
    top: 35%;
    position: relative;
}

.skills{
    width: 100%;
    max-width: 600px;
    padding: 0 20px;
  }
  
  .skill-name{
    font-size: 18px;
    font-weight: 700;
    color: #f1f1f1;
    text-transform: uppercase;
    margin: 20px 0;
  }
  
  .skill-bar{
    height: 14px;
    background: #282828;
    border-radius: 3px;
  }
  
  .skill-per{
    height: 14px;
    background: #00bcd4;
    border-radius: 3px;
    position: relative;
    animation: fillBars 2.5s 1;
  }
  
  .skill-per::before{
    content: attr(per);
    position: absolute;
    padding: 4px 6px;
    background: #9c27b0;
    border-radius: 4px;
    font-size: 12px;
    top: -35px;
    right: 0;
    transform: translateX(50%);
  }
  
  .skill-per::after{
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: #9c27b0;
    top: -15px;
    right: 0;
    transform: translateX(50%) rotate(45deg);
    border-radius: 2px;
  }
  
  @keyframes fillBars{
    from{
      width: 0;
    }
    to{
      width: 100%;
    }
  }

  