<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ZusÃ¤tzliche Styles fÃ¼r Impressum */
.text-link {
    color: var(--pink-accent);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.text-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--pink-accent);
    transition: width 0.3s ease;
}

.text-link:hover {
    color: var(--pink-accent);
}

.text-link:hover::after {
    width: 100%;
}</pre></body></html>