

html {
  height: 100%;
  background: #000;
}

body {
  position: absolute;
  width: 100vw;
  height: 100vh;
  justify-content: center;
  justify-items: center;
  overflow: hidden;
  background-color: black;
}


DIV {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 600px;
  height: 600px;
  

  background-image: none,
    linear-gradient(45deg, rgb(0, 0, 0) 50%, transparent 50%),
    linear-gradient(-45deg, rgb(6, 247, 30) 50%, transparent 50%);
    filter: saturate(8);
    transform: scale(1.9);
  background-repeat: no-repeat, repeat, repeat;
  background-position: 
  50% -15%,
  50% 50%, 
  50% 50%;
  background-size: auto, 5em 5em, 5em  5em;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgb(0, 0, 0);
  animation: move 1.68s infinite alternate linear;
}
@keyframes move {
  0 % {
    background-position: 
    50% 95%,
    50% 50%, 
    50% 50%;
    filter: hue-rotate(0deg);
  }

  25 % {
    filter: hue-rotate(50deg);
  }

  50% {
      filter: hue-rotate(75deg);
  }

  100% {
    background-position: 
    0% 95%,
    50% 0%, 
    50% -70%;

     filter: hue-rotate(250deg);
  }

}
.image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 350px;
  width: 350px;
  filter: saturate(8);
  border-radius: 100%;
  /*overflow:hidden*/;
}
.image-wrapper img {
  height: 100%;
  width: 100%;
}

.overlay:before, .overlay-hover:hover:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  box-shadow: 0 0 0 5px rgb(1, 255, 1);
}


.svs-glitch{
  position: absolute;
  width: 100vw;
  height: 100vh;
  background-image: url('https://media.giphy.com/media/dxDKHaQx2VmICwOWwr/giphy.gif');
  background-repeat: no-repeat;
  background-size: cover;
}

.svs-glitch:before{
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url('https://media.giphy.com/media/dxDKHaQx2VmICwOWwr/giphy.gif');
background-size: cover;
opacity: 100;
animation: animate .6s infinite;
}

@keyframes animate {
  0% {
        background-position: 0 0;
        filter: saturate(8);
        filter: hue-rotate(50deg);
  }
  10% {
        background-position: 14px 0;
        filter: saturate(4);
        transform: translateX(50px);
  }
  20% {
        background-position: -4px 0;
        filter: grayscale(100%);
        transform: translateY(425px);
  }
  30% {
        background-position: 12px 20px;
        transform: translateY(145px);
  }
  40% {
        background-position: -16px 0;
        transform: translateY(-245px);
        
  }
  50% {
        background-position: -24px 0;
        filter: blur(15px);
        transform: translateY(445px);
  }
  60% {
        background-position: -42px 0;
        filter: grayscale(100%);
        transform: translateY(45px);
  }
  70% {
        background-position: 10 22px;
        transform: translateX(45px);
  }
  80% {
        background-position: -60px -10px;
  }
  100% {
        background-position: 0 0;
        filter: saturate(24);
  }
}

button {
	border:2px #fff solid;
	background:none;
	font-size:16px;
	padding:10px 20px;
	color:#fff;
	margin:20px;
}

.glitch {
  font-size: 200px;
  line-height: 1;
  font-family: 'Expletus Sans', sans-serif;
  font-weight: 900;
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  text-decoration: none;
  color: crimson;
	cursor:pointer;
	letter-spacing:0.04em;
}

.animated {
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}


.glitch:before, .glitch:after {
    display: block;
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: .8;
}

.glitch:after {
    color: #f0f;
    z-index: -20;
  }

.glitch:before {
    color: #0ff;
    z-index: -10;
  }

.glitch:before {
	animation: glitch .4s cubic-bezier(.25, .46, .45, .94) both infinite
}

.glitch:after {
	animation: glitch .4s cubic-bezier(.25, .46, .45, .94) both reverse infinite
}


@keyframes glitch {
  0% {
      transform: translate(0);
      transform: translateY(0%)
  }
  20% {
      transform: translate(-30px, 30px)
  }
  40% {
      transform: translate(-30px, -30px)
  }
  60% {
      transform: translate(30px, 30px)
  }
  80% {
      transform: translate(30px, -30px)
  }
  to {
      transform: translate(0);
      transform: translateY(100%)
  }
}
