
        @font-face {
            font-family: 'Lucida Console';
            src: url(/fonts/lucida_console.woff) format('woff');
            font-weight: 400;
            font-style: normal
        }

        .hackerScreen {
            background-color: #000 !important;
            color: #11c700;
            text-align: start;
            font-size: 13px;
            font-weight: 400;
            line-height: 1.2;
            box-sizing: border-box;
            padding-top: 10px;
            padding-left: 10px;
            padding-right: 10px;
            scrollbar-width: none;
            -ms-overflow-style: none
        }

        .hackerScreenSpeedButton {
            width: 30px;
            height: 30px;
            cursor: pointer;
            outline: none;
            border: 1px solid gray;
        }

        .hackerScreen::-webkit-scrollbar {
            display: none
        }

        .hackerScreen {
            overflow: auto;
            white-space: pre-wrap;
            user-select: none;
            font-family: "Lucida Console", "Courier New", monospace
        }

        .hackerScreen:fullscreen {
            font-size: 15px;
            line-height: 1.4
        }

        .update-row-title {
            margin: 20px 0;
            font-size: 20px;
            display: block;
        }

        .hackerScreenRightGalleryWrapper {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding-top: 20px;
        }

        #hacker-screen-speed {
            padding-top: 5px;
            padding-bottom: 5px;
            width: 30px;
            text-align: center;
            margin-left: 15px;
            margin-right: 15px;
            user-select: none;

        }

        button,
        input,
        optgroup,
        select,
        textarea {
            margin: initial;
            font-family: initial;
            font-size: initial;
            line-height: initial;
        }

        input[type=number] {
            -moz-appearance: textfield;
        }

        @keyframes blink {

            from,
            to {
                border-color: transparent
            }

            50% {
                border-color: #11c700
            }
        }

        .hackerScreen::after {
            content: "\200B";
            display: inline-block;
            vertical-align: text-bottom;
            margin-left: 5px;
            border-left: 2px solid #11c700;
            animation: blink 1s step-end infinite;
            height: 1em
        }

        @media screen and (max-width: 1024px) {
            .hackerScreen {
                font-size: 5px;
                line-height: 1.1
            }

            .hackerScreen:fullscreen {
                font-size: 13px;
                line-height: 1.4
            }
        }

        @media screen and (max-width: 512px) {
            .hackerScreen:fullscreen {
                font-size: 13px;
                line-height: 1.3
            }
        }

        #hackerOutput:focus {
            border: none
        }
    