.admonition.activity {
  border-color: #876FC8;
  --pst-icon-admonition-default: "🛠️";
}

/* Make targets blink. If a hyperlink target is at the end of the page, there is no scroll, which gives the feeling that the link is broken */
:target{
    animation-name: blink;
    animation-direction: normal;
    animation-duration: 2s;
    animation-iteration-count: 2;
    animation-timing-function: ease;
}

@keyframes blink {
  0%, 100% {
    background-color: transparent;
  }
  50% {
    background-color: yellow;
  }
}
