        @font-face {
            font-family: "HussarTechniczny";
            src: url("/fonts/HussarTechniczny.otf") format("opentype");
        }
        @font-face {
            font-family: "HussarTechnicznyOblique";
            src: url("/fonts/HussarTechnicznyOblique.otf") format("opentype");
        }
        @font-face {
            font-family: "HussarTechnicznyOutline";
            src: url("/fonts/HussarTechnicznyOutline.otf") format("opentype");
        }
        @font-face {
            font-family: "HussarTechnicznyOutlineOblique";
            src: url("/fonts/HussarTechnicznyOutlineOblique.otf") format("opentype");
        }
        body {
            background-color: black;
            margin: 0;
            padding: 20px;
            height: 100vh;
            box-sizing: border-box;
            display: flex;

            /* Double white border around the page */
            border: double 10px #FCF3CF;
            justify-content: center;
            align-items: center;
            
            /* Custom font */
            font-family: "HussarTechniczny";
            font-weight: normal;
            font-style: normal; 
            color: whitesmoke;
            justify-content: center;
            align-items: center;
        }

        .image-container {
            /* Center the image */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        img {
            /* Responsive image size */
            max-width: 80%;
            max-height: 80vh;
            margin-bottom: 20px;
        }
        
        a, a:link, a:visited {
            font-family: "HussarTechnicznyOutline";
            text-decoration: none; /* removes the underline */
            color: #FCF3CF; /* Use the same color border */
        }

        a:hover {
            font-family: "HussarTechnicznyOutline";
            text-decoration: underline;
        }
