* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  body {
    background-color: black;
  }
.skills {
    color: white;
    display: grid;
    gap: 1rem 0rem;
    z-index: 10;
    grid-template-columns: repeat(4,1fr);
    text-align: center;
  }
  .head {
    grid-column: span 4;
    justify-self: center;
  
  }
  .skills h1 {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image:linear-gradient( to right,
    #EB6952 20%,
    #FAAD17 20% 40%,
    #7E46DD 40% 60%,
    #4FA6DB 60% 80%,
    #B3B3B3 80%
  );
    font-family: sans-serif;
    font-size: 5rem;
    margin-bottom: 1rem;
  }
  .skills h2 {
    color: white;
    list-style: none;
    font-size: 2rem;
    margin-left: 0.5rem;
  }
  .skills h1::selection,
  .skills h2::selection {
background-color: #a7480d;
  }
  .rate {
    float: left;
    font-family: Josefin Sans, Poppins;
    height: 46px;
    display: flex;
    grid-column: span 4;
    grid-column-start: 2;
    grid-column-end: 4;
    position: relative;
    justify-content: space-between;
  }
  .rate progress {
    border-radius: 7px; 
    width: 50%;
    height: 1rem;
    align-self: center;
    justify-self: center;
    display: none;
  }
  .rate progress::-webkit-progress-bar {
    background-color: gray;
    border-radius: 7px;
  }
  .rate progress::-webkit-progress-value {
    background-color: blueviolet;
    border-radius: 7px;
  }
  .rate h2 {
    align-self: flex-end;
  }
  .rate svg {
   stroke: #7E46DD;
  }
  .rate:not(:checked) > input {
    position:absolute;
    top:-9999px;
  }
  .rate:not(:checked) > label {
    width: 1.2em;
    overflow:hidden;
    white-space:nowrap;
    cursor:pointer;
    font-size:30px;
    color:#ccc;
  }
  .start {
    margin: auto;
    width: 3rem;
    height: 3rem;
    background-color: white;
  }
  .rgbKineticSlider {
    width: 100%;
    overflow: hidden;
  }
  /* .mobile{
    display: none;
    background-image: url('/imgo3.png');
    background-position: 70%;
  } */
  
  @media (max-width: 600px  ) {
   
    .rate {
      grid-column-start: 1;
      grid-column-end: 5;
      align-items: center;
      text-align: center;
      justify-content: space-around;
    }
    .skills {
      margin-top: 2.5rem;
      z-index: 22;
    }
    .head h1 {
   font-size: 2.5rem;
    }
    .skills h2 {
      font-size: 1.5rem;
    }
    .skills svg {
      height: 1.8rem;
      width: 1.8rem;
    }
    .rgbKineticSlider {
      margin-top: 3.5rem;
      
    }
  }