Hi, I'm using SugarCube 2.3.
For the paragraphs, this link is really helpful https://twinery.org/forum/discussion/6383/how-to-make-slow-fade-in-text-on-sugarcube
To make the blinking links, I'm using a fade-in/fade-out animation on a:hover
@-webkit-keyframes fade-in-out
{
0%,
to {opacity: 1}
50% {opacity: 0}
}
@keyframes fade-in-out
{
0%,
to {opacity: 1}
50% {opacity: 0}
}