fixed capitalize

This commit is contained in:
2025-02-19 12:09:00 +02:00
parent a3a6843c8e
commit c98e4d680f

View File

@@ -39,3 +39,19 @@
</div>
</div>
</div>
<style>
/* Apply the blinking animation to the link */
.blinking-effect {
animation: blink 2s infinite; /* Adjust the speed here (1.5s for slow blinking) */
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
</style>