
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
body {
    font-family: "Protest Strike", sans-serif;
    font-weight: 400;
    font-style: normal;

    color: white;
    background-color: #191919;
    width: 100%;
    /* padding: 20px; */

    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Phudu", sans-serif;
    font-weight: 700;
    font-style: bold;
}

h1 {
    font-size: 100px;
    text-transform: capitalize;
}

h2 {
    font-size: 72px;
    text-transform: capitalize;
}

h3 {
    font-size: 56px;
}

h4 {
    font-size: 40px;
}

a {
    color: cadetblue;
}
a:hover {
    color: cornflowerblue;
}

button {
    padding: 16px;
    min-width: 100px;
}

/* CSS */
.button,
.button:after {
  min-width: 200px;
  height: 76px;
  font-size: 26px;
  font-weight: 700;
  font-family: "Phudu", sans-serif;
  /* background: linear-gradient(45deg, transparent 5%, #FF013C 5%);
  border: 0; */
  color: #3e3e3e;
  letter-spacing: 3px;
  /* box-shadow: 6px 0px 0px #1c212f; */
  outline: transparent;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  text-align: center;
  text-decoration: none;
}

.button:after {
  --slice-0: inset(50% 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: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 3%, #192b44ea 3%, #40c93e96 5%, #0000002f 5%);
  text-shadow: -3px -3px 0px #F8F005, 3px 3px 0px #1c212fa6;
  clip-path: var(--slice-0);
}

.button:hover {
  color: white;
}
.button:hover:after {
  animation: 2s glitch;
  animation-timing-function: steps(2, end);
}

@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 (min-width: 768px) {
.button,
 .button:after {
    min-width: 200px;
    height: 90px;
    /* color: #ffffff; */
    line-height: 88px;
  }
}



/*  */
.ar-landing-spacial {
    text-align: center;
    pointer-events: none;;
}

