From cbc9feda8b9d5a4c6f86fa560292a01b45b01461 Mon Sep 17 00:00:00 2001
From: Quaternions <krakow20@gmail.com>
Date: Mon, 10 Mar 2025 11:36:30 -0700
Subject: [PATCH] keep logo aspect ratio

---
 index.html | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/index.html b/index.html
index 6545a97..650100f 100644
--- a/index.html
+++ b/index.html
@@ -62,14 +62,21 @@
             z-index: 1;
         }
 
-        .logo {
+        .logo-container {
             width: 300px;
-            height: 300px;
+            max-width: 80vw;
             margin-bottom: 40px;
             filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.7));
             animation: pulse 2s infinite;
         }
 
+        .logo {
+            width: 100%;
+            height: auto;
+            max-height: 300px;
+            object-fit: contain;
+        }
+
         @keyframes pulse {
             0% {
                 transform: scale(1);
@@ -144,7 +151,9 @@
 
     <!-- Main Content -->
     <div class="content">
-        <img src="assets/logo.png" alt="StrafesNET Logo" class="logo">
+        <div class="logo-container">
+            <img src="assets/logo.png" alt="StrafesNET Logo" class="logo">
+        </div>
         <h1 class="site-title">StrafesNET</h1>
         <p class="tagline">Explore StrafesNET services.</p>