From 8f164d0d47585d6a3b82fabfd0bfe4d6671ec947 Mon Sep 17 00:00:00 2001
From: Quaternions <krakow20@gmail.com>
Date: Mon, 10 Mar 2025 11:49:41 -0700
Subject: [PATCH] two columns for links

---
 index.html | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/index.html b/index.html
index eed3ab5..4f620eb 100644
--- a/index.html
+++ b/index.html
@@ -90,15 +90,16 @@
         }
 
         .links {
-            display: flex;
-            justify-content: center;
-            flex-wrap: wrap;
-            gap: 20px;
+            display: grid;
+            grid-template-columns: 1fr 1fr;
+            gap: 15px;
             margin-bottom: 40px;
+            width: 100%;
+            max-width: 500px;
         }
 
         .link {
-            padding: 12px 24px;
+            padding: 12px 0;
             background: rgba(0, 0, 0, 0.6);
             color: #00ffff;
             text-decoration: none;