        @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 {
            color: red;
            margin-top: 20px;
        }

        .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;
            position: relative;
            overflow: visible;
        }

        .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;
        }

        .section-title {
            background: #333;
            border: 2px solid #666;
            color: white;
            padding: 6px;
            margin-bottom: 10px;
            font-size: 18px;
        }

        .info-box {
            background: #111;
            border: 2px solid #666;
            padding: 10px;
            text-align: left;
            margin-bottom: 10px;
        }

        .info-header {
            background: #333;
            color: white;
            padding: 6px;
            margin: -10px -10px 10px -10px;
            border-bottom: 2px solid #666;
            text-align: center;
        }

        .info-row {
            display: flex;
            border-bottom: 1px dotted #555;
            padding: 8px 4px;
            min-height: 20px;
        }

        .info-row:last-child {
            border-bottom: none;
        }

        .info-label {
            width: 150px;
            color: red;
        }

        .info-value {
            flex: 1;
            color: #ddd;
        }

        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            margin-bottom: 10px;
        }

        .interest-box {
            background: #111;
            border: 2px solid #666;
            padding: 10px;
            min-height: 130px;
        }

        .interest-box h3 {
            margin: 0 0 10px 0;
            color: red;
            font-size: 18px;
        }

        .interest-box p {
            color: #ccc;
            line-height: 1.5;
            margin: 6px;
        }

        .bottom-image {
            width: 50%;
            max-width: 250px;
            height: auto;
            display: block;
            margin: 20px auto 10px auto;

            user-select: none;
            -webkit-user-select: none;
            -webkit-user-drag: none;
            pointer-events: none;
        }