body {
    background-color: #222222;
    color: #ffffff;
    font-family: Arial, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ascii-art {
    font-family: monospace;
    font-size: calc(7px + 2vw);
    line-height: 1.2;
    margin-top: 100px;
    margin-bottom: calc(100px + 0.5vw);
    text-align: center;
    white-space: pre;
}

.typewriter {
    font-family: monospace;
    font-size: calc(20px + 0.5vw);
    color: #f0f0f0;
    letter-spacing: 0.03em;
}

.typewriter::after {
    content: '|';
    color: #ffffff;
    animation: blink 0.7s step-end infinite;
}

@keyframes blink {

    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}