* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "DM Sans", sans-serif;
}

body {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #1f1f47;
  overflow: hidden;
}

.container {
  padding: 2rem;
  width: 30rem;
  height: 45rem;
  border-radius: 1rem;
  -webkit-box-shadow: 0 1rem 2rem rgba(31, 38, 135, 0.37);
          box-shadow: 0 1rem 2rem rgba(31, 38, 135, 0.37);
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(1.8rem);
          backdrop-filter: blur(1.8rem);
  color: #fff;
  text-align: center;
}

.container .imgbox {
  width: 10rem;
  height: 10rem;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.5rem;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
}

.container .imgbox img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.container .intro-text {
  margin: 1rem;
}

.container .intro-text h1 {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
}

.container .intro-text p {
  font-size: 1.4rem;
  opacity: 0.5;
}

.container span {
  text-transform: capitalize;
  font-size: 1.7rem;
  letter-spacing: 0.1;
}

.container .btn-group button {
  margin: 1.5rem 0.7rem;
  padding: 1rem 2.2rem;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.4rem;
  font-size: 1.5rem;
}

.container .btn-group button:nth-of-type(2) {
  background-color: transparent;
}

.container .social-links {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.container .social-links button {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: none;
}

.container .social-links button i {
  font-size: 1.8rem;
}

.container .social-links button:nth-of-type(1) {
  background-color: #1778f2;
}

.container .social-links button:nth-of-type(2) {
  background-color: #1da1f2;
}

.container .social-links button:nth-of-type(3) {
  background-color: #c8232c;
}

.container .social-links button:nth-of-type(4) {
  background-image: -webkit-gradient(linear, left top, left bottom, from(#feda75), color-stop(#fa7e1e), color-stop(#d62976), color-stop(#962fbf), to(#4f5bd5));
  background-image: linear-gradient(#feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.blob {
  position: absolute;
  width: 50rem;
  height: 50rem;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(47, 184, 255, 0.42)), to(#5c9df1));
  background-image: linear-gradient(180deg, rgba(47, 184, 255, 0.42), #5c9df1);
  mix-blend-mode: overlay;
  -webkit-animation: move 15s linear infinite alternate;
          animation: move 15s linear infinite alternate;
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translate(-400px, -100px) rotate(-90deg);
            transform: translate(-400px, -100px) rotate(-90deg);
    border-radius: 24% 76% 35% 65% / 76% 24% 33% 67%;
  }
  100% {
    -webkit-transform: translate(400px, 100px) rotate(-10deg);
            transform: translate(400px, 100px) rotate(-10deg);
    border-radius: 76% 24% 33% 67% / 24% 76% 35% 65%;
  }
}

@keyframes move {
  0% {
    -webkit-transform: translate(-400px, -100px) rotate(-90deg);
            transform: translate(-400px, -100px) rotate(-90deg);
    border-radius: 24% 76% 35% 65% / 76% 24% 33% 67%;
  }
  100% {
    -webkit-transform: translate(400px, 100px) rotate(-10deg);
            transform: translate(400px, 100px) rotate(-10deg);
    border-radius: 76% 24% 33% 67% / 24% 76% 35% 65%;
  }
}
/*# sourceMappingURL=main.css.map */