diff --git a/bohne/index.html b/bohne/index.html index 2e7fd31..0e005d8 100644 --- a/bohne/index.html +++ b/bohne/index.html @@ -66,6 +66,37 @@ font-size: 0.9em; color: #666; } + + footer { + margin-top: 2rem; + padding: 1rem 0; + color: #666; + font-size: 0.9rem; + text-align: center; + border-top: 1px solid #ddd; + width: 100%; + } + + footer a { + color: #4CAF50; + text-decoration: none; + transition: color 0.3s; + } + + footer a:hover { + text-decoration: underline; + } + + .heart { + color: #e74c3c; + animation: heartbeat 1.5s infinite; + } + + @keyframes heartbeat { + 0% { transform: scale(1); } + 50% { transform: scale(1.2); } + 100% { transform: scale(1); } + }
@@ -358,8 +389,18 @@ } updateStats(); + + // Jahr für das Copyright aktualisieren + document.getElementById('current-year').textContent = new Date().getFullYear(); }); + +