        body {
            background-color: teal;
            margin: 0;
            font-family: 'JetBrains Mono', monospace;
        }

        #bg-video {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }

        #pfp {
            top:80px;
            left:15px;
            width: 120px;
            height: 120px;
            border-radius: 5px;
            object-fit: cover;
            margin-top: 15px;
            border: 2px solid teal;
        }
        #headerstuff{
            display: flex;
            flex-direction: column;
            align-items: center;
            position: fixed;
            width: 400px;
            background-color: black;
            height:100%;
            opacity:0.9;
            z-index: 1;
            border:5px solid teal;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
        #headerstuff h1 {
            font-size: clamp(30px, 2vw, 50px);
            text-align: center;
            color: white;
        }
        #headerstuff h3 {
            font-size: clamp(20px, 2vw, 30px);
            text-align: center;
            color: rgb(255, 255, 255);
        }
        #toggle-btn {
            position: fixed;
            top: 10px;
            left: 10px;
            z-index: 2;
            background-color: darkblue;
            color: teal;
            border: 2px solid teal;
            border-radius: 5px;
            width: 35px;
            height: 35px;
            font-size: 18px;
            cursor: pointer;
            transition: left 0.3s ease;
        }
        #toggle-btn.shifted {
            left: 10px;
        }

        .buttons{
            height: 25px;
            width: 100px;
            border-radius:5px;
            font-size:14px;
            background-color:darkblue;
        }
        .buttons a {
            text-decoration: none;
        }
        .readme-btn {
            margin-top: 8px;
            background: transparent;
            color: teal;
            border: 1px solid teal;
            border-radius: 3px;
            padding: 3px 10px;
            font-size: 0.8rem;
            cursor: pointer;
            transition: 0.2s;
        }

        .readme-btn:hover {
            background: teal;
            color: white;
        }
        .readme-content h1,
        .readme-content h2,
        .readme-content h3 {
            color: teal;
            margin: 8px 0 4px 0;
        }

        .readme-content p {
            color: white;
            margin: 4px 0;
        }

        .readme-content a {
            color: teal;
        }

        .readme-content code {
            background-color: rgba(0, 128, 128, 0.2);
            color: teal;
            padding: 1px 5px;
            border-radius: 3px;
            font-size: 0.85em;
        }

        .readme-content pre {
            background-color: rgba(0, 0, 0, 0.4);
            padding: 10px;
            border-radius: 5px;
            overflow-x: auto;
        }

        .readme-content ul, 
        .readme-content ol {
            color: white;
            padding-left: 20px;
        }

        .readme-content img {
            max-width: 100%;
            border-radius: 5px;
        }

        .readme-content {
            margin-top: 12px;
            color: white;
            font-size: 0.85rem;
            border-top: 1px solid teal;
            padding-top: 10px;
            white-space: pre-wrap;
            max-height: 300px;
            overflow-y: auto;
        }
        #footing{
            position:fixed;
            align-items: center;
            bottom: 5%;
            height:20px;
            width: 100%;
            background-color: teal;
        }
        .back-btn {
            height: 25px;
            width: 80px;
            border-radius: 5px;
            font-size: 14px;
            background-color: darkblue;
            cursor: pointer;
        }

        .back-btn a {
            color: teal;
            text-decoration: none;
        }

        .projects-container {
            padding-top: 50px;
            padding-bottom: 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .projects-container h1 {
            color: black;
            font-size: 30px;
            margin-bottom: 10px;
        }

        .project-card {
            background-color: darkblue;
            opacity: 0.9;
            border: 2px solid teal;
            border-radius: 10px;
            padding: 20px 30px;
            width: 60%;
            max-width: 600px;
        }

        .project-card h2 {
            color: teal;
            margin: 0 0 8px 0;
        }

        .project-card p {
            color: white;
            margin: 0 0 10px 0;
            font-size: 14px;
        }

        .project-card a {
            color: teal;
            font-size: 13px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin: 8px 0;
        }

        .tag {
            background-color: teal;
            color: white;
            padding: 3px 10px;
            border-radius:3px;
            font-size: 0.75rem;
            font-weight: bold;
            letter-spacing: 0.5px;
        }
        #filter-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
            margin-bottom: 20px;
        }

        #filter-bar span {
            left:10px;
            background-color:darkblue;
            border: 2px solid teal;
            height: 25px;
            width:80px;
            color: teal;
            align-self: center;
            font-weight: bold;
        }

        .filter-btn {
            background-color: darkblue;
            opacity:0.8;
            color: teal;
            border: 2px solid teal;
            padding: 4px 12px;
            border-radius: 3px;
            cursor: pointer;
            font-size: 0.85rem;
            transition: 0.2s;
        }

        .filter-btn.active {
            background: teal;
            color: white;
        }

        #headerstuff.hidden {
            transform: translateX(-100%);
            opacity: 0;
            pointer-events: none;
        }
        .project-card.hidden {
            display: none;
        }
        hr{
            background-color: teal;
            opacity: 0.8;
            height:2px;
            border: 1px rgb(3, 215, 215);
        }