diff --git a/index.html b/index.html index eb3f5cb..1c9f091 100644 --- a/index.html +++ b/index.html @@ -41,6 +41,7 @@
+

diff --git a/src/styles/styles.css b/src/styles/styles.css index af57a78..b6ec5b1 100644 --- a/src/styles/styles.css +++ b/src/styles/styles.css @@ -193,6 +193,26 @@ body { animation: synthwaveMove 6s linear infinite; } +.neon-grid { + position: absolute; + top: 50%; + left: 50%; + width: 120%; + height: 120%; + transform: translate(-50%, -50%) perspective(1000px) rotateX(60deg); + background-image: + linear-gradient(rgba(255, 0, 255, 0.3) 1px, transparent 1px), + linear-gradient(90deg, rgba(255, 0, 255, 0.3) 1px, transparent 1px); + background-size: 50px 50px; + animation: gridFloat 8s ease-in-out infinite alternate; + z-index: 1; +} + +@keyframes gridFloat { + from { transform: translate(-50%, -50%) perspective(1000px) rotateX(60deg) translateZ(0); } + to { transform: translate(-50%, -50%) perspective(1000px) rotateX(60deg) translateZ(20px); } +} + @keyframes synthwaveMove { 0% { transform: translateY(0); } 100% { transform: translateY(100px); }