        body {
            background-color: #000000;
            color: #ffffff;
            font-family: 'Times New Roman', Times, serif;
            margin: 0 auto;
            padding: 40px 20px;
            font-size: 16px;
            max-width: 900px;
        }

        ::-webkit-scrollbar {
            width: 15px;
            background: #000;
            border-left: 1px solid #ff0000;
        }

        ::-webkit-scrollbar-thumb {
            background: #ff0000;
        }

        a {
            color: #ff0000;
            text-decoration: none;
        }

        a:hover {
            background: #ff0000;
            color: #000;
        }

        h1,
        h3 {
            color: #ff0000;
            text-shadow: none;
            text-transform: lowercase;
            padding-bottom: 5px;
            margin-top: 30px;
        }

        .image-box {
            padding: 3px;
            background: #000;
            margin: 15px 0;
        }

        .image-box img {
            width: 100%;
            display: block;
        }

        .blink {
            animation: blinker 1s linear infinite;
            color: #ff0000;
        }

        @keyframes blinker {
            50% {
                opacity: 0;
            }
        }

        p {
            line-height: 1.8;
        }
