/* Seu código já existente */
@property --k {
  syntax: "<number>";
  initial-value: 0;
  inherits: true;
}
html {
  --a: calc(var(--k)*360deg);
  -webkit-animation: k 1s forwards;
          animation: k 1s forwards;
  animation-timeline: scroll(root);
}
html::before, html::after {
  --img:
   url(https://images.unsplash.com/photo-1587052755556-89808205c097?w=1600)
    50%/ cover;
  position: fixed;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle, transparent calc((1 - var(--k))*100%), rgba(0, 0, 0, 0.375)), var(--img);
  filter: grayScale(var(--k));
  content: "";
}
html::after {
  background: var(--img);
  filter: url(#f) hue-rotate(var(--a));
}

@-webkit-keyframes k {
  to {
    --k: 1 ;
  }
}

@keyframes k {
  to {
    --k: 1 ;
  }
}
body {
  font: clamp(.75em, 5vw, 1.5em) shantell sans, cursive;
}

header, footer {
  text-align: center;
}

h2 {
  margin-bottom: 2em;
  font-size: 2.75em;
  text-shadow: 1px 1px 3px #fff;
}

p {
  margin: 0 auto 50vh;
  padding: 1em;
  max-width: 43em;
  background: rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
p:first-letter {
  color: hsl(var(--a), 100%, 30%);
  font-size: 1.75em;
  font-weight: 700;
  text-shadow: 1px 1px 1px #000;
}

code, kbd {
  font-family: syne mono;
}

a {
  color: hsl(var(--a), 100%, 30%);
  text-shadow: 1px 1px 1px #000;
}

em {
  display: block;
  padding-bottom: 2em;
  color: hsl(var(--a), 100%, 70%);
  font-size: 2em;
  font-weight: 700;
  text-shadow: 2px 2px 5px #000;
}

/* Estilos para as imagens */
.profile-pic img {
  width: 200px;
  height: 200px;
  border-radius: 50%; /* Faz a borda redonda */
  display: block;
  margin: 0 auto 10px;
  border: 5px solid #ff1493; /* Borda colorida */
  box-shadow: 0 0 15px rgba(255, 20, 147, 0.6); /* Efeito de sombra suave */
}

.footer-image img {
  width: 450px;
  height: 450px;
  display: block;
  margin: 5px auto;
  border-radius: 50%; /* Borda redonda */
  border: 5px solid #ff1493; /* Borda colorida */
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.6); /* Efeito de sombra suave */
}
