@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  font-family: "Poppins", sans-serif;
}

body {
  background: url(gradient.png);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.content {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100vw;
}

.content h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 4em;
  position: absolute;
}

.content h2:nth-child(1) {
  color: transparent;
  -webkit-text-stroke: 2px #0b0945;
}

.content h2:nth-child(2) {
  color: #030f5a;
  animation: waving 4s ease-in-out infinite;
}

@keyframes waving {
  0%,
  100% {
    clip-path: polygon(
      0% 45%,
      16% 44%,
      33% 50%,
      54% 60%,
      70% 61%,
      84% 59%,
      100% 52%,
      100% 100%,
      0% 100%
    );
  }

  50% {
    clip-path: polygon(
      0% 60%,
      15% 65%,
      34% 66%,
      51% 62%,
      67% 50%,
      84% 45%,
      100% 46%,
      100% 100%,
      0% 100%
    );
  }
}

footer {
  position: absolute;
  padding: 2px;
  top: 95vh;
  left: 45vw;
  width: 10vw;
  border: 1px solid #030f5a;
  border-radius: 7px;
  text-align: center;
}

footer div {
  color: #030f5a;
  font-size: 0.8em;
}

footer p {
  position: relative;
  font-size: 0.8em;
  overflow: hidden;
  background: linear-gradient(90deg, #000, #00000088, #000);
  background-repeat: no-repeat;
  background-size: 80%;
  animation: animate 2s linear infinite;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: black;
}

@keyframes animate {
  0% {
    background-position: -500%;
  }
  100% {
    background-position: 500%;
  }
}
