        /* Reset default margin and padding */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --background-color: #333; /* Background color for dark mode */
            --text-color: #fff; /* Text color for dark mode */
        }
        a {
            text-decoration: none;
            color: lightblue;
        }
        
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            background-color: var(--background-color);
            color: var(--text-color);
        }

        /* Header styles */
        header {
            background-color: #333;
            color: #fff;
            padding: 20px;
            text-align: center;
            position: relative; /* Position relative for absolute positioning */
        }

        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); /* Adjust the width of each column as needed */
            grid-gap: 20px; /* Adjust the gap between grid items as needed */
        }

        .grid-container img {
            min-width: 230px;
            max-width: 80%;
        }

        #connect img {
            height: 40px;
            width: 40px;
            margin: 0;
        }

        #connect a:hover {
            background-color: #333;
        }

        #github-img {
            content: url("/svg/github-mark-white.svg");
        }

        header h1 {
            margin-bottom: 10px;
        }

        nav ul {
            list-style-type: none;
        }

        nav ul li {
            display: inline;
            margin-right: 10px;
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            padding: 5px 10px;
        }

        /* Section styles */
        section {
            background-color: #222;
            margin-bottom: 20px;
            padding: 20px;
        }

        section h2 {
            margin-bottom: 10px;
        }

        section ul {
            list-style-type: none;
        }

        section ul li {
            margin-bottom: 5px;
        }

        section ul li a, .grid-container a {
            color: #999;
            text-decoration: none;
            transition: background-color 0.3s, color 0.3s;
            padding: 5px 10px; /* Add padding for links */
            display: inline-block; /* Ensure padding is applied correctly */
        }

        /* Footer styles */
        footer {
            text-align: center;
            margin-top: 20px;
            padding: 10px;
            background-color: #333;
            color: #fff;
        }

        /* Hover effect for links */
        a:hover {
            background-color: #eee;
            color: #333;
        }

        /* Responsive styles */
        @media only screen and (max-width: 600px) {
            header {
                padding: 10px;
            }

            header h1 {
                font-size: 24px;
            }
        }
        @media (prefers-color-scheme: light) {
            body {
              color:#333;
              background:#EEE
            }
            /* Hover effect for links */
            a {
                color: rgb(69, 69, 187);
                text-decoration: none;
            }
            pre {
              background-color: #BBB;
              padding: 10px;
            }
            section ul li a, .grid-container a {
                color: #444;
            }
            section {
                background-color: #FAFAFA;
            }
            #connect a:hover {
                background-color: #EEE;
            }
            #github-img {
                content: url("/svg/github-mark.svg");
            }
          }

