body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "JetBrains Mono", monospace;
    color: white;
    overflow: hidden;
}

#message {
    font-size: 1.5rem;
    max-width: 75%;
    text-align: center;
    white-space: pre-wrap;
    font-weight: 400;
    font-optical-sizing: auto;
    font-style: normal;
}

#loading {
    font-size: 1.5rem;
    text-align: center;
    color: white;
    font-family: "JetBrains Mono", monospace;
}

#cursor {
    display: inline-block;
    animation: blink 1s steps(1) infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    50.01%, 100% { opacity: 0; }
}