        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
            background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
            background-color: #0b0d13;
            font-family: 'Courier New', Courier, monospace;
            overflow-x: hidden;
            text-decoration: none;
        }

        header, footer {
            width: 100%;
            box-sizing: border-box;
        }
        
        .header {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px 0;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(20, 23, 23, 0);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            z-index: 2;
        }
        
        a {
            color: white;
        }
        
        .title {
            text-decoration: none;
        }

        .logo {
            width: 50px;
            height: auto;
            margin-right: 20px;
        }

        .logo-text {
            color: white;
            font-size: 1.5em;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            padding: 10px;
        }

        .main-content {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            text-align: center;
            flex-grow: 1;
            padding: 100px 20px 60px;
            color: white;
            font-size: 1em;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
            width: 100%;
            box-sizing: border-box;
        }

        footer {
            width: 100%;
            text-align: center;
            padding: 20px 0;
            z-index: 2;
            background:  rgba(22, 23, 23, 0); 
        }

        footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        footer ul li {
            display: inline;
            margin: 0 10px;
        }

        footer ul li a {
            color: white;
            text-decoration: none;
            font-size: 1em;
        }

        footer ul li a:hover {
            text-decoration: underline;
        }
        
        button {
            padding: 10px 20px;
            font-size: 1em;
            background-color: rgba(100, 100, 100, 0.4);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            margin-top: 10px;
            width: 100%;
            max-width: 150px;
            box-sizing: border-box;
        }

        button:hover {
            background-color: rgba(100, 100, 100, 0.2);
        }
        
        .back-button {
            position: relative;
            top: 80px; /* Place it beneath the header */
            left: 20px;
            z-index: 0;
        }
        
        .back-button a {
            display: inline-block;
            padding: 8px 16px;
            background-color: rgba(100, 100, 100, 0.1);
            color: white;
            border-radius: 4px;
            text-decoration: none;
            font-size: 0.9em;
            font-weight: bold;
        }
        
        .back-button a:hover {
            background-color: rgba(100, 100, 100, 0.5);
        }

        .project-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
            max-width: 1200px;
            margin-top: 20px;
        }
        
        .project-tag {
            position: absolute;
            top: 10px;
            right: 10px;
            display: flex;
            align-items: center;
            background: rgba(100, 100, 100, 0.2); /* Slightly transparent background */
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8em;
            color: white;
            text-shadow: none;
        }
        
        .project-tag .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            margin-right: 5px;
        }

        .project-box {
            width: 300px; /* Set a fixed width */
            min-width: 250px;
            background-color: rgba(100, 100, 100, 0.1);
            color: white;
            padding: 20px;
            margin: 10px;
            flex: 0 1 auto; /* Allow shrinking if necessary */
            box-sizing: border-box;
            border-radius: 5px;
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: space-between; /* Keeps bottom tag and content aligned */
        }
                        
        .project-box-large {
            background-color: rgba(100, 100, 100, 0.1);
            color: white;
            padding: 20px;
            margin: 10px;
            box-sizing: border-box;
            border-radius: 5px;
            min-width: 250px;
            max-width: 600px;
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: space-between; /* Keeps bottom tag and content aligned */
        }
        
        .bottom-tag {
            position: absolute;
            bottom: 10px;
            right: 10px;
            background-color: rgba(100, 100, 100, 0.2);
            padding: 2px 8px;
            border-radius: 2px;
            font-size: 0.7em;
            color: white;
            text-shadow: none;
            white-space: nowrap;
        }
                
        .project-box:hover {
            background-color: rgba(100, 100, 100, 0.3);
        }

        .project-title {
            font-size: 1.5em;
            margin-bottom: 10px;
            text-decoration: none;
        }

        .project-description {
            font-size: 1em;
        }

        .project-image {
            width: 150px;
            height: auto;
            margin-bottom: 10px;
            margin-top: 10px;
            border-radius: 5px;
        }

        .live-demo {
            margin-top: 20px; /* Ensures the live demo link is pushed to the bottom */
            font-size: 1em;
            color: white;
            display: flex;
            align-items: center;
            text-decoration: underline dotted;
            margin-bottom: 15px;
        }

        .live-demo:hover {
            text-decoration: underline;
        }

        .arrow {
            margin-left: 5px;
            font-size: 1.2em;
        }

        @media (max-width: 800px) {
            .project-box {
                flex: 1 1 calc(50% - 40px);
            }
            
            .project-box-large {
                flex: 1 1 calc(50% - 40px);
            }
            
            .project-title {
                margin-top: 20px;
            }
        }

        /* Keyframes for fade-in animation */
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .project-box {
            animation: fadeIn 0.5s ease-out forwards; /* Apply fade-in animation to all boxes */
        }
        
        
        .back-button {
            animation: fadeIn 0.5s ease-out forwards; /* Apply fade-in animation to all boxes */
        }
        
        .project-box-large {
            animation: fadeIn 0.5s ease-out forwards; /* Apply fade-in animation to all boxes */
        }
        
        .github-button {
            animation: fadeIn 0.5s ease-out forwards; /* Apply fade-in animation to all boxes */
        }

