        @font-face {
            font-family: "Fairfax Pona HD";
            src: url("../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;

            user-select: none;
            -webkit-user-select: none;
            -webkit-user-drag: none;
            pointer-events: none;
        }

        .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;

        }

        .box {
            background: #111;
            border: 2px solid #666;
            padding: 10px;
            margin-bottom: 10px;

        }

        .box h3 {
            margin-top: 0;
            color: white;

        }

        .picture-box {
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow: hidden;

        }

        .picture {
            max-width: 600px;
            height: 400px;
            object-fit: contain;

            user-select: none;
            -webkit-user-select: none;
            -webkit-user-drag: none;
            pointer-events: none;

        }