.wrap {
  max-width: 85%;
  margin: auto auto;
  width: 100%;
}

h1 {
  font-family: 'CodeProBlack';
  font-size: 7rem;
}
h2 {
  font-family: 'CodeProBold';
  font-size: 2rem;
}
h3 {
  font-family: 'CodeProBold';
  font-size: 1rem;
}
h4 {
  font-family: 'CodeProBold';
  font-size: 1rem;
}

p {
  font-family: 'Urbanist';
  font-size: 1rem;
}

.color_line {
width: 50%;
color: #FFE887;
background-color: #FFE887;
border-style: none;
height: 3px;
}

.white-box {
border-radius: 25px;
backdrop-filter: blur(20px) brightness(115%);
padding: 50px 100px;
margin: 30px 0;
text-align: center;
}

.inscrire,
.inscrire::after {
position: relative;
padding: 25px 40px;
font-size: 1.1rem;
font-family: 'CodeProBold', cursive;
background: linear-gradient(45deg, transparent 5%, #B191FF 5%);
border: 0;
color: #fff;
letter-spacing: 3px;
line-height: auto;
box-shadow: 6px 0 0 #FFE887;
outline: transparent;
text-decoration: none;
}

.inscrire::after {
--slice-0: inset(100% 50% 50% 50%);
--slice-1: inset(80% -6px 0 0);
--slice-2: inset(50% -6px 30% 0);
--slice-3: inset(10% -6px 85% 0);
--slice-4: inset(40% -6px 43% 0);
--slice-5: inset(80% -6px 5% 0);
content: "Glitchi";
display: block;
position: absolute;
top: 0;
left: 0;
bottom: 0;
background: linear-gradient(45deg, transparent 3%, #FFE887 3%, #B191FF 5%, #00e6f6 5%);
text-shadow: -3px -3px 0 #f8f005, 3px 3px 0 #00e6f6;
clip-path: var(--slice-0);
}

.inscrire:hover::after {
animation: glitch 1s steps(2, end);
}

.inscrire:hover {
background: linear-gradient(45deg, transparent 5%, #FFE887 5%);
box-shadow: 6px 0 0 #B191FF;
color: black;
}

@keyframes glitch {
0% {
  clip-path: var(--slice-1);
  transform: translate(-20px, -10px);
}
10% {
  clip-path: var(--slice-3);
  transform: translate(10px, 10px);
}
20% {
  clip-path: var(--slice-1);
  transform: translate(-10px, 10px);
}
30% {
  clip-path: var(--slice-3);
  transform: translate(0px, 5px);
}
40% {
  clip-path: var(--slice-2);
  transform: translate(-5px, 0px);
}
50% {
  clip-path: var(--slice-3);
  transform: translate(5px, 0px);
}
60% {
  clip-path: var(--slice-4);
  transform: translate(5px, 10px);
}
70% {
  clip-path: var(--slice-2);
  transform: translate(-10px, 10px);
}
80% {
  clip-path: var(--slice-5);
  transform: translate(20px, -10px);
}
90% {
  clip-path: var(--slice-1);
  transform: translate(-10px, 0px);
}
100% {
  clip-path: var(--slice-1);
  transform: translate(0);
}
}

@media only screen and (max-width: 1080px) {
  h1 {
    font-family: 'CodeProBlack';
    font-size: 4rem;
  }

  .white-box {
      padding: 30px;
  }

}