@import url("https://fonts.googleapis.com/css2?family=Poppins&family=Roboto:wght@400;500&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-family: "Roboto", sans-serif;
}

.container {
  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: #020f14;
}

.profilebox {
  padding: 10px;
  margin: auto;
  width: 500px;
  height: 300px;
  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;
  position: relative;
}

.infobox {
  position: absolute;
  width: 100%;
  height: 100%;
}

.infobox .box {
  position: absolute;
  -webkit-animation: box 2s alternate;
          animation: box 2s alternate;
}

.infobox .box h5,
.infobox .box .linkbox {
  -webkit-box-shadow: 0 0 10px -3px;
          box-shadow: 0 0 10px -3px;
  font-weight: 500;
  border: 1px solid #4dcdff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 5px;
  border-radius: 5px;
  color: #4dcdff;
  text-transform: capitalize;
}

@-webkit-keyframes box {
  0% {
    opacity: 0;
    top: -200px;
  }
  100% {
    opacity: 1;
  }
}

@keyframes box {
  0% {
    opacity: 0;
    top: -200px;
  }
  100% {
    opacity: 1;
  }
}

.infobox .name {
  left: 20px;
  top: 20px;
}

.infobox .name h5 {
  animation: name 0.9s alternate-reverse linear infinite;
}

.infobox .name .line1 {
  position: absolute;
  top: 27px;
  left: 52px;
  width: 1px;
  height: 30px;
  border-radius: 50px;
  background: #4dcdff;
  -webkit-box-shadow: #4dcdff 0px 0px 10px 0px;
          box-shadow: #4dcdff 0px 0px 10px 0px;
  animation: name 0.7s alternate-reverse linear infinite;
}

.infobox .name .line2 {
  -webkit-box-shadow: #4dcdff 0px 0px 10px 0px;
          box-shadow: #4dcdff 0px 0px 10px 0px;
  position: absolute;
  top: 11px;
  left: 114px;
  animation: name 0.5s alternate-reverse linear infinite;
  width: 1px;
  height: 131px;
  background: #4dcdff;
  -webkit-transform: rotateZ(123deg);
  transform: rotateZ(288deg);
}

.infobox .name .line2::before {
  position: absolute;
  animation: name 2s alternate-reverse linear infinite;
  background: #4dcdff;
  content: "";
  left: -3px;
  top: 130px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  -webkit-box-shadow: #4dcdff 0px 0px 10px 0px;
          box-shadow: #4dcdff 0px 0px 10px 0px;
}

@-webkit-keyframes name {
  0%,
  12%,
  62%,
  45%,
  0%,
  30%,
  88%,
  10% {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  100%,
  23%,
  1%,
  98% {
    -webkit-box-shadow: #4dcdff 0px 0px 10px 0px;
            box-shadow: #4dcdff 0px 0px 10px 0px;
  }
}

@keyframes name {
  0%,
  12%,
  62%,
  45%,
  0%,
  30%,
  88%,
  10% {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  100%,
  23%,
  1%,
  98% {
    -webkit-box-shadow: #4dcdff 0px 0px 10px 0px;
            box-shadow: #4dcdff 0px 0px 10px 0px;
  }
}

.infobox .age {
  position: absolute;
  left: 400px;
  top: 20px;
}

.infobox .age h5 {
  animation: age 1s alternate-reverse linear infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.infobox .age .line1 {
  position: absolute;
  top: 28px;
  left: 25px;
  width: 1px;
  height: 21px;
  background: #4dcdff;
  -webkit-box-shadow: #4dcdff 0px 0px 10px 0px;
          box-shadow: #4dcdff 0px 0px 10px 0px;
  animation: age 0.5s alternate-reverse linear infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.infobox .age .line2 {
  position: absolute;
  top: 11px;
  left: -34px;
  width: 1px;
  animation: age 2s alternate-reverse linear infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  height: 131px;
  background: #4dcdff;
  -webkit-transform: rotateZ(123deg);
  transform: rotateZ(65deg);
  -webkit-box-shadow: #4dcdff 0px 0px 10px 0px;
          box-shadow: #4dcdff 0px 0px 10px 0px;
}

.infobox .age .line2::before {
  position: absolute;
  background: #4dcdff;
  content: "";
  left: -3px;
  top: 130px;
  animation: age 0.9s alternate-reverse linear infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  -webkit-box-shadow: #4dcdff 0px 0px 10px 0px;
          box-shadow: #4dcdff 0px 0px 10px 0px;
}

@-webkit-keyframes age {
  0%,
  12%,
  62%,
  45%,
  0%,
  30%,
  88%,
  10% {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  100%,
  23%,
  1%,
  98% {
    -webkit-box-shadow: #4dcdff 0px 0px 10px 0px;
            box-shadow: #4dcdff 0px 0px 10px 0px;
  }
}

@keyframes age {
  0%,
  12%,
  62%,
  45%,
  0%,
  30%,
  88%,
  10% {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  100%,
  23%,
  1%,
  98% {
    -webkit-box-shadow: #4dcdff 0px 0px 10px 0px;
            box-shadow: #4dcdff 0px 0px 10px 0px;
  }
}

.infobox .bio {
  left: 400px;
  top: 114px;
}

.infobox .bio h5 {
  width: 100px;
  font-weight: 500;
  font-size: 0.7rem;
  line-height: 23px;
  animation: age 0.5s alternate-reverse linear infinite;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.infobox .bio .line1 {
  position: absolute;
  top: 6px;
  left: -46px;
  -webkit-box-shadow: #4dcdff 0px 0px 10px 0px;
          box-shadow: #4dcdff 0px 0px 10px 0px;
  width: 1px;
  height: 92px;
  animation: age 0.5s alternate-reverse linear infinite;
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
  background: #4dcdff;
  -webkit-transform: rotateZ(123deg);
  transform: rotateZ(90deg);
}

.infobox .bio .line1::before {
  position: absolute;
  background: #4dcdff;
  content: "";
  animation: age 0.5s alternate-reverse linear infinite;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  left: -3px;
  top: 90px;
  -webkit-box-shadow: #4dcdff 0px 0px 10px 0px;
          box-shadow: #4dcdff 0px 0px 10px 0px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.infobox .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  left: 348px;
  top: 251px;
}

.infobox .social .linkbox {
  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;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  animation: name 0.8s alternate-reverse linear infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.infobox .social .linkbox a {
  margin: auto 10px;
  text-decoration: none;
  color: #4dcdff;
  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;
}

.infobox .social .line1 {
  position: absolute;
  top: -72px;
  left: -28px;
  animation: age 0.5s alternate-reverse linear infinite;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  width: 1px;
  height: 85px;
  background: #4dcdff;
  -webkit-transform: rotateZ(123deg);
  transform: rotateZ(136deg);
  -webkit-box-shadow: #4dcdff 0px 0px 10px 0px;
          box-shadow: #4dcdff 0px 0px 10px 0px;
}

.infobox .social .line1::before {
  position: absolute;
  background: #4dcdff;
  content: "";
  left: -3px;
  animation: age 0.5s alternate-reverse linear infinite;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  top: 84px;
  -webkit-box-shadow: #4dcdff 0px 0px 10px 0px;
          box-shadow: #4dcdff 0px 0px 10px 0px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.infobox .reletion {
  top: 130px;
}

.infobox .reletion h5 {
  animation: age 0.5s alternate-reverse linear infinite;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.infobox .reletion .line1 {
  position: absolute;
  top: -53px;
  left: 117px;
  -webkit-box-shadow: #4dcdff 0px 0px 10px 0px;
          box-shadow: #4dcdff 0px 0px 10px 0px;
  width: 1px;
  height: 138px;
  animation: age 0.5s alternate-reverse linear infinite;
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
  background: #4dcdff;
  -webkit-transform: rotateZ(123deg);
  transform: rotateZ(270deg);
}

.infobox .reletion .line1::before {
  position: absolute;
  background: #4dcdff;
  content: "";
  left: -3px;
  -webkit-box-shadow: #4dcdff 0px 0px 10px 0px;
          box-shadow: #4dcdff 0px 0px 10px 0px;
  top: 135px;
  width: 7px;
  height: 7px;
  animation: age 0.5s alternate-reverse linear infinite;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  border-radius: 50%;
}

.infobox .work {
  top: 230px;
  left: 12px;
}

.infobox .work h5 {
  animation: name 0.5s alternate-reverse linear infinite;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.infobox .work .line1 {
  position: absolute;
  top: -46px;
  left: 172px;
  -webkit-box-shadow: #4dcdff 0px 0px 10px 0px;
          box-shadow: #4dcdff 0px 0px 10px 0px;
  width: 1px;
  height: 59px;
  animation: name 0.5s alternate-reverse linear infinite;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  background: #4dcdff;
  -webkit-transform: rotateZ(123deg);
  transform: rotateZ(232deg);
}

.infobox .work .line1::before {
  position: absolute;
  background: #4dcdff;
  content: "";
  left: -3px;
  animation: name 0.5s alternate-reverse linear infinite;
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
  top: 58px;
  -webkit-box-shadow: #4dcdff 0px 0px 10px 0px;
          box-shadow: #4dcdff 0px 0px 10px 0px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.imagebox {
  width: 100px;
  height: 100px;
  position: absolute;
}

.imagebox img {
  -webkit-animation: 2s img alternate linear infinite;
          animation: 2s img alternate linear infinite;
  width: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 4px solid #00d5ff;
  -webkit-box-shadow: #4dcdff 0px 0px 10px 0px;
          box-shadow: #4dcdff 0px 0px 10px 0px;
}

@-webkit-keyframes img {
  0% {
  }
  100% {
  }
}

@keyframes img {
  0% {
  }
  100% {
  }
}
/*# sourceMappingURL=style.css.map */