/* Heading */
h1 {
  color: #00000000;
  font-family: "Patua One", cursive;
  font-size: 100px;
  text-align: center;
  margin: 30px auto 0 auto;
  position: relative;
  width: 100%;
  z-index: 10;

  background: url(https://www.asianscientist.com/wp-content/uploads/bfi_thumb/space-315uqsztl4woiv3nk6xi4g.jpg);

  filter: saturate(150%) contrast(120%) blur(0.5px) hue-rotate(60deg);
  -webkit-background-clip: text;
  background-clip: text;
  background-position: center;

  mix-blend-mode: screen;
  background-blend-mode: screen;
  text-shadow: 0px 0px 20px #aa00ff33;

  animation-name: float;
  animation-iteration-count: infinite;
  animation-duration: 30s;
}

@keyframes float {
  0% {
    transform: rotate(1deg) translate(0px, 0px);
    background-position: 49% 49%;
  }

  10% {
    transform: rotate(-1deg) translate(-6px, 2px);
    background-position: 51% 48%;
  }

  20% {
    transform: rotate(1deg) translate(5px, -1px);
    background-position: 48% 52%;
  }

  30% {
    transform: rotate(-1deg) translate(-3px, 7px);
    background-position: 50% 49%;
  }

  40% {
    transform: rotate(1deg) translate(0px, -5px);
    background-position: 51% 48%;
  }

  50% {
    transform: rotate(-1deg) translate(3px, 4px);
    background-position: 48% 52%;
  }

  60% {
    transform: rotate(1deg) translate(-4px, -2px);
    background-position: 49% 49%;
  }

  70% {
    transform: rotate(-1deg) translate(5px, 6px);
    background-position: 51% 48%;
  }

  80% {
    transform: rotate(1deg) translate(-1px, 5px);
    background-position: 48% 52%;
  }

  90% {
    transform: rotate(-1deg) translate(3px, -6px);
    background-position: 52% 48%;
  }

  100% {
    transform: rotate(1deg) translate(0px, 0px);
    background-position: 49% 49%;
  }
}

/* Profile Img */
.profile-img {
  position: relative;
  width: 100%;
  text-align: center;
  z-index: 1;
}

.profile-img > img {
  display: block;
  border: 4px solid #ddd;
  border-radius: 4px;
  width: 350px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;

  filter: grayscale(1) contrast(1.5);
  transform: rotate(10deg) scale(1.05);
}

/* Social Icons */
.ease-all {
  transition: all 400ms ease-in-out;
}

/* Main Social Btns */
.social-btns {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: sticky;
  cursor: pointer;
}

.social-btns li a {
  float: left;
  width: 40px;
  height: 40px;
  margin-right: 1rem;
  padding-top: 11px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #fff;
  color: #fff;
}

.social-btns li a:hover {
  box-shadow: inset 0 0 0 40px #666;
  color: #fff;
}

/* Links Share Btns */
.share-btn {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: sticky;
  cursor: pointer;
}

.share-btn li a {
  float: left;
  width: 40px;
  height: 40px;
  margin-right: 1rem;
  padding-top: 11px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px #fff;
  color: #fff;
}

.share-btn li a:hover {
  box-shadow: inset 0 0 0 40px #666;
  color: #fff;
}

.share-btn {
  margin-right: -35px;
}
