.pfp {
  position: relative;
  margin: auto;
  width: 240px;
  overflow: visible;
}

.pfp .backdrop {
  opacity: 0;
  animation: fade-in 1s cubic-bezier(0.37, 0, 0.63, 1) .5s 1 forwards;
  animation-delay: 0.3s;
  position: absolute;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  backdrop-filter: brightness(400%) blur(30px);
  z-index: inherit;
  margin-left: 0;
}

.pfp .pfp-panel-text {
  pointer-events: auto !important;
  -webkit-user-select: none;     
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  text-align: center;
  position: absolute;
  opacity: 0;
  width: 80vw;
  height: fit-content;
  margin: auto;
  margin-left: calc(-40vw + 120px);
  z-index: 100;
  font-size: auto;
  font-size: clamp(0.7rem, 1vw, 1rem);
}

.pfp .container img {
  opacity: 0;
  width: 239px;
  height: 239px;
  animation: fade-in 1s cubic-bezier(0.37, 0, 0.63, 1) .5s 1 forwards;
  animation-delay: 0.3s;
  pointer-events: none;
  display: block;
  margin-left: 0;
  margin-right: 50%;
  border-radius: 50%;
  scale: 0.9;
  white-space: nowrap;
}

iframe {
  opacity: 0.015;
  scale: 0.2;
  position: fixed;
  top: 0.3vh;
  transform-origin: top left;
  transition: 0.3s;
  transition-delay: 0s;
}

iframe:hover {
  transition-delay: 0.1s;
  opacity: 1;
  scale: 1;
}