        @font-face {
            font-family: "Fairfax Pona HD";
            src: url("../Main-Assets/FairfaxPonaHD.ttf")
        }

        html {
            overflow-x: hidden;
            overflow-y: scroll;
            scrollbar-width: none;
        }

        html::-webkit-scrollbar {
            display: none;
        }

        body {
            margin: 0;
            font-family: "Comic Sans MS", sans-serif;
            background-color: black;
            color: red;
            text-align: center;
            overflow-x: hidden;
            overflow-y: visible;
            min-width: 1000px;
            width: 100%;
            user-select: none;
        }

        h1 {
            margin-top: 20px;
            color: red;
        }

        .banner {
            position: relative;
            width: 100%;
            height: 80px;
            margin-top: -15px;
            margin-bottom: 0;
            overflow: hidden;
            border: 2px solid #666;
            border-bottom: none;
            box-sizing: border-box;
        }

        .banner img {
            position: absolute;
            width: 1000px;
            height: 200px;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            display: block;
        }

        .banner h1 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            margin: 0;
            width: 100%;
            color: red;
            font-size: 32px;
            text-shadow: 2px 2px black;
            z-index: 2;
        }

        .wrapper {
            width: 1000px;
            margin: 20px auto;
        }

        .navbar {
            background: #333;
            border: 2px solid #777;
            padding: 10px;
            color: white;
            margin-bottom: 10px;
        }

        .navbar a {
            color: white;
            text-decoration: none;
        }

        .navbar a:hover {
            color: red;
        }

        .box {
            background: #111;
            border: 2px solid #666;
            padding: 10px;
            margin-bottom: 15px;
            color: red;
        }

        .box h3 {
            margin-top: 0;
            color: white;
        }

        .gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .art-card {
            background: #111;
            border: 2px solid #666;
            padding: 10px;
            cursor: pointer;
            transition: border-color 0.2s;
        }

        .art-card:hover {
            border-color: red;
        }

        .art-card img {
            width: 100%;
            height: 250px;
            object-fit: contain;
            display: block;
            user-select: none;
            -webkit-user-select: none;
            -webkit-user-drag: none;
            pointer-events: none;
        }

        .art-title {
            color: white;
            margin-top: 10px;
            font-weight: bold;
        }

        .art-caption {
            color: #cccccc;
            font-size: 14px;
            margin-top: 5px;
        }

        .overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,.85);
            z-index: 999;
            justify-content: center;
            align-items: center;
        }

        .overlay-content {
            text-align: center;
        }

        .overlay img {
            max-width: 85vw;
            max-height: 75vh;
            border: 3px solid #777;
            background: #111;
            padding: 8px;
            user-select: none;
            -webkit-user-select: none;
            -webkit-user-drag: none;
            pointer-events: none;
        }

        .overlay-caption {
            color: white;
            margin-top: 15px;
            font-size: 18px;
        }