* {
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: "Poppins", sans-serif;

}
body{
   
        width: 100%;
        height: 100%;
        --s: 200px; /* control the size */
        --c1: #1d1d1d;
        --c2: #4e4f51;
        --c3: #3c3c3c;
      
        background: repeating-conic-gradient(
              from 30deg,
              #0000 0 120deg,
              var(--c3) 0 180deg
            )
            calc(0.5 * var(--s)) calc(0.5 * var(--s) * 0.577),
          repeating-conic-gradient(
            from 30deg,
            var(--c1) 0 60deg,
            var(--c2) 0 120deg,
            var(--c3) 0 180deg
          );
        background-size: var(--s) calc(var(--s) * 0.577);
    
      
}
button {
    outline: none;
    cursor: pointer;
    border: none;
    width: 200px;
   padding: 15px 100px  15px 100px;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    position: relative;
    display: inline-block;
    letter-spacing: 0.05rem;
    font-weight: 700;
    font-size: 17px;
    border-radius: 500px;
    overflow: hidden;
    background: #66ff66;
    color: ghostwhite;
   }
   
   button span {
    position: relative;
    z-index: 10;
    transition: color 0.4s;
   }
   
   button:hover span {
    color: black;
   }
   
   button::before,
   button::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
   }
   
   button::before {
    content: "";
    background: #000;
    width: 120%;
    left: -10%;
    transform: skew(30deg);
    transition: transform 0.4s cubic-bezier(0.3, 1, 0.8, 1);
   }
   
   button:hover::before {
    transform: translate3d(100%, 0, 0);
   }
   #profil{
    padding-bottom: 40px;
    padding-top: 60px;
   }
   #profil img {
    border-radius: 50%;
   }
   #profil h1 {
    color: #66ff66;
   }
   #profil-bnt .bnt-1{
    padding-bottom: 20px;
    
   }
   #profil-bnt .bnt-1 button span{
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
   
   }
   .bnt-1 a{
    text-decoration: none;
    color: white;
   }
  

   