        @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;
            position: relative;

        }


        .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;

        }

        .blog-header {
            background: #111;
            border: 2px solid #666;
            padding: 15px;
            margin-bottom: 15px;
            text-align: left;

        }

        .blog-header h2 {
            margin: 0 0 5px 0;
            color: white;

        }

        .blog-header p {
            margin: 0;
            color: red;

        }


        #postList {
            display: flex;
            flex-direction: column;
            gap: 12px;

        }


        .blog-post {
            display: flex;
            width: 100%;
            min-height: 150px;
            background: #111;
            border: 2px solid #666;
            box-sizing: border-box;
            cursor: pointer;
            text-align: left;
            transition:
                border-color 0.15s,
                background-color 0.15s;

        }


        .blog-post:hover {
            background: #181818;
            border-color: red;

        }


        .post-user {
            width: 190px;
            flex-shrink: 0;
            border-right: 2px solid #555;
            padding: 15px;
            box-sizing: border-box;
            text-align: center;
            background: #0b0b0b;

        }


        .post-user img {
            width: 75px;
            height: 75px;

            object-fit: cover;

            border: 2px solid #666;

            margin-bottom: 8px;

            user-select: none;
            -webkit-user-select: none;
            -webkit-user-drag: none;
            pointer-events: none;

        }


        .post-username {
            color: white;
            font-weight: bold;
            font-size: 17px;

        }


        .post-date {
            color: #888;
            font-size: 13px;
            margin-top: 4px;

        }


        .post-preview {
            flex: 1;
            padding: 15px;
            min-width: 0;

        }

        .post-title {
            color: white;
            font-size: 23px;
            font-weight: bold;
            margin-bottom: 10px;

        }

        .post-excerpt {
            color: red;
            font-size: 15px;
            line-height: 1.5;
            height: 45px;
            overflow: hidden;
            white-space: pre-line;

        }


        .read-more {
            color: #888;
            font-size: 13px;
            margin-top: 10px;

        }


        #fullPost {
            display: none;
            background: #111;
            border: 2px solid #666;
            padding: 20px;
            text-align: left;

        }


        .back-button {
            display: inline-block;
            background: #333;
            border: 2px solid #777;
            color: white;
            padding: 8px 15px;
            margin-bottom: 15px;
            cursor: pointer;
            font-family: inherit;
            font-size: 15px;

        }


        .back-button:hover {
            color: red;
            border-color: red;

        }


        .full-title {
            color: white;
            font-size: 30px;
            margin: 0 0 10px 0;

        }


        .full-author {
            display: flex;
            align-items: center;
            border-bottom: 2px solid #555;
            padding-bottom: 15px;
            margin-bottom: 20px;

        }

        .full-author img {
            width: 55px;
            height: 55px;
            object-fit: cover;
            border: 2px solid #666;
            margin-right: 12px;

            user-select: none;
            -webkit-user-select: none;
            -webkit-user-drag: none;
            pointer-events: none;

        }

        .full-author-name {
            color: white;
            font-weight: bold;

        }

        .full-author-date {
            color: #888;
            font-size: 13px;
            margin-top: 3px;

        }


        .full-content {
            color: red;
            font-size: 16px;
            line-height: 1.7;
            white-space: pre-wrap;

        }

        .scrambleText {
            font-family: monospace;
        }