@font-face {
  font-family: Pufony;
  src: url(../files/Pufony-1.otf);
}
*, *:before, *:after {
  padding: 0;
  margin: 0;
  box-sizing: inherit;
}

body {
  text-align: center;
  min-height: 100vh;
  line-height: 1;
  font-family: Pufony;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: #fcffee;
  background-image: url(../img/iv.webp);
  background-size: cover;
  background-position: center;
  color: #030408;
}

.container {
  max-width: 750px;
  margin: auto;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.container .bio {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1%;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin: 0.5rem;
  margin-bottom: 1rem;
}
.container .bio .pfp {
  width: 10rem;
  height: 10rem;
  margin-right: 0.5rem;
}
.container .bio h1 {
  font-size: 3.3rem;
}
.container .links h2 {
  font-size: 2.5rem;
}
.container .links a {
  text-decoration: none;
  color: #030408;
}
.container .links img {
  width: 4rem;
  border-radius: 30%;
  margin-right: 1rem;
}
.container .links .social {
  padding: 0.8rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: #030408 solid 3px;
  margin: 1rem;
  box-shadow: inset 0 0 0 2000px rgba(212, 212, 212, 0.089);
}
.container .links .social .link {
  padding: 1rem;
  border-radius: 1%;
  margin-left: 1.2rem;
}
.container .links .social:hover h2 {
  font-size: 2.71rem;
  transition: all 0.3s ease;
}

.box div {
  position: absolute;
  width: 4rem;
  height: 60px;
  border: 6px solid #fef8ea;
  background-color: #fef8ea;
  z-index: -1;
  -webkit-clip-path: polygon(10% 25%, 35% 25%, 35% 0%, 65% 0%, 65% 25%, 90% 25%, 90% 50%, 65% 50%, 65% 100%, 35% 100%, 35% 50%, 10% 50%);
          clip-path: polygon(10% 25%, 35% 25%, 35% 0%, 65% 0%, 65% 25%, 90% 25%, 90% 50%, 65% 50%, 65% 100%, 35% 100%, 35% 50%, 10% 50%);
}

.box div:nth-child(1) {
  top: 16%;
  left: 12%;
  animation: animate 10s linear infinite;
}

.box div:nth-child(2) {
  top: 70%;
  left: 56%;
  animation: animate 7s linear infinite;
}

.box div:nth-child(3) {
  top: 89%;
  left: 11%;
  animation: animate 6s linear infinite;
}

.box div:nth-child(4) {
  top: 62%;
  left: 4%;
  animation: animate 9s linear infinite;
}

.box div:nth-child(5) {
  top: 17%;
  left: 74%;
  animation: animate 11s linear infinite;
}

.box div:nth-child(6) {
  top: 59%;
  left: 82%;
  animation: animate 15s linear infinite;
}

.box div:nth-child(7) {
  bottom: 11%;
  left: 83%;
  animation: animate 12s linear infinite;
}

.box div:nth-child(8) {
  top: 3%;
  left: 67%;
  animation: animate 7s linear infinite;
}

.box div:nth-child(9) {
  top: 70%;
  left: 69%;
  animation: animate 17s linear infinite;
}

.box div:nth-child(10) {
  bottom: 20%;
  left: 34%;
  animation: animate 16s linear infinite;
}

@keyframes animate {
  0% {
    transform: scale(0) translateY(0) rotate(0);
    opacity: 1;
  }
  100% {
    transform: scale(1.3) translateY(-90px) rotate(360deg);
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */