        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background: #0f172a;
        }

        #typing {
            font-family: "Courier New", monospace;
            font-size: 36px;
            color: #38bdf8;

            white-space: nowrap;
            border-right: 3px solid #38bdf8;
            padding-right: 6px;

            animation: blink 0.7s step-end infinite;
        }

        @keyframes blink {
            50% {
                border-color: transparent;
            }
        }