@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#connect {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

#connect .content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.content_img {
  background: linear-gradient(to right, #ffcd4c, #68ef9e, #4caaee, #686def);
  width: 245px;
  height: 77px;
  clip-path: url(#clipPath);
  background-size: 500% 100%;
  animation: moveGradient 1.5s ease infinite;
}

#connect .footer {
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-family: SF Pro Text;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: absolute;
  bottom: 48px;
  margin: 0 48px;
  left: 0;
}
