Hey, I'm Ludwig 🚀
Welcome to my digital playground.
@@ -52,6 +181,33 @@ } } + @keyframes fadeIn { + from { + opacity: 0; + } + to { + opacity: 1; + } + } + + :global(.star) { + animation: fadeIn 1s forwards; + } + + :global(#stars-lines line) { + transition-duration: 500ms; + animation: strokeAnim 3s ease-in-out infinite alternate; + } + + @keyframes strokeAnim { + from { + stroke: #00ffff; + } + to { + stroke: #ff00ff; + } + } + p { font-size: 1.2rem; max-width: 600px;