/* Style für aktive Seite */
a[href="copyright.html"] {
    color: #00fffb;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

/* Styles für den Quellenbereich */
.quellen-bereich {
    padding: 20px;
    margin: 20px;
}

.quelle {
    background-color: var(--überschriften);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}

.quelle:hover {
    box-shadow: 0 0 20px rgba(77, 124, 255, 0.3);
}

.quelle h3 {
    color: var(--hover);
    margin-bottom: 10px;
}

.quelle a {
    color: var(--akzente);
    text-decoration: none;
    transition: color 0.3s ease;
}

.quelle a:hover {
    color: var(--hover);
}

