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

        /* Body styles */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #222;
            color: #fff;
            line-height: 1.5;
        }
		
		

        /* Fixed bar styles */
		
		a.menu-link  {
			text-decoration:none;
			color: #787878;
			}
		a.menu-link:hover {color: #fff;}
		
        .fixed-bar {
            box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.56);
            font-display: auto;
            font-family: "Didact Gothic", sans-serif;
            font-weight: lighter;
            font-size: 20px;
            position: fixed;
            background: #151515db;
            left: 0;
            height: 70px;
            width: 100%;
            color: #787878;
            backdrop-filter: blur(6px);
            line-height: normal;
            text-align: center;
            z-index: 1000;
            transform: translateY(-100%);
            animation: slide-in 1s forwards;
            animation-delay: 0.5s;
            display: flex;
            align-items: center;
            justify-content: space-around;
			text-decoration: none;
			
		
        }

        .current {
            text-decoration: none;
            position: relative;
        }

        .current::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -3px;
            width: 0%;
            height: 2px;
            background-color: #fff;
            transition: width 0.3s ease;
            z-index: -1;
            animation: fadeInUnderline 0.5s ease 1s forwards;
            animation-delay: 3s;
        }

        @keyframes fadeInUnderline {
            from {
                width: 0%;
            }
            to {
                width: 100%;
            }
        }

        @keyframes slide-in {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(-5%);
            }
        }

        /* Main content */
        main {
            padding: 0px 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .artwork-item {
            position: relative;
            overflow: hidden;
            text-align: right;
            padding: 10px;
            flex: 1 1 calc(33.33% - 20px); /* 3 columns */
            max-width: calc(33.33% - 20px);
            animation: fadeInAnimation ease 2s;
            animation-iteration-count: 1;
            animation-fill-mode: none;
            padding: 20px;						  
        }
		
		h1 {
            font-family: "Didact Gothic", sans-serif;
            font-weight: lighter;
            font-size: 20px;
            display: inline;
            color: white;
        }

        img, video {
            width: 100%;
            height: 300px; /* Smaller images */
            object-fit: cover;
            display: block;
            border-radius: 10px;
        }

        /* Overlay */
        .overlay {
            position: absolute;
            bottom: 20px;
            right: 20px;
            font-size: 15px;
            background: rgba(0, 0, 0, 0.6);
            padding: 5px 10px;
            border-radius: 5px;
			opacity: 0;
        }
 
        
			.overlay h3, .overlay p {
            margin: 0px;
            color: #fff;
            font-size: 10px;
            animation: fadeInAnimation ease 3s;
            animation-iteration-count: 1;
            animation-fill-mode: forwards;
        }
								   
        @media screen and (max-width: 1024px) {
            .artwork-item {
                flex: 1 1 calc(50% - 20px); /* 2 columns */
                max-width: calc(50% - 20px);
            }

            .overlay h3, .overlay p {
                font-size: 12px;
                line-height: 1.5;
            }							
        }

        @media screen and (max-width: 768px) {
            .artwork-item {
                flex: 1 1 calc(50% - 20px); 
                max-width: calc(50% - 20px);
            }

            img, video {
                height: 250px;
            }
        }
		
		@media screen and (max-width: 575px) {
            .artwork-item {
                flex: 1 1 100%; 
                max-width: 100%;
            }

            img, video {
                height: 450px;
            }
        }
		
		/* Centered "Recent Work" Section */
        .recent-work {
            text-align: center;
            padding-top: 130px; /* Push down the content */
            padding-bottom: 50px;
            font-family: "Didact Gothic", sans-serif; /* Same font as the fixed bar */
            font-size: 30px;
            color: white;
            animation: fadeInAnimation 2s ease /* Fade-in with delay */
        }

        @keyframes fadeInAnimation {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1;
            }
        }
  