diff --git a/solitaire/index.html b/solitaire/index.html
index 52e5c02..2339d43 100644
--- a/solitaire/index.html
+++ b/solitaire/index.html
@@ -3,8 +3,9 @@
- Solitaire
-
+ Solitaire | PonyWave Tools
+
+
@@ -269,7 +270,7 @@
.credits {
position: fixed;
- bottom: 10px;
+ bottom: 50px;
left: 10px;
background: #1e3d2f;
padding: 10px;
@@ -277,6 +278,7 @@
font-size: 0.8em;
opacity: 0.8;
transition: opacity 0.3s ease;
+ z-index: 9;
}
.credits:hover {
@@ -341,6 +343,43 @@
.give-up-btn:hover {
background: #c0392b;
}
+
+ footer {
+ width: 100%;
+ background-color: rgba(0, 0, 0, 0.7);
+ color: white;
+ text-align: center;
+ padding: 10px 0;
+ margin: 0;
+ position: fixed;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ box-sizing: border-box;
+ z-index: 10;
+ }
+
+ footer a {
+ color: #fff;
+ text-decoration: none;
+ font-weight: bold;
+ transition: color 0.3s;
+ }
+
+ footer a:hover {
+ color: #3498db;
+ }
+
+ .heart {
+ color: #ff5c8d;
+ animation: heartbeat 1.5s infinite;
+ }
+
+ @keyframes heartbeat {
+ 0% { transform: scale(1); }
+ 50% { transform: scale(1.2); }
+ 100% { transform: scale(1); }
+ }
@@ -434,6 +473,13 @@
+
+