body, p, .terminal-text, .terminal-text:focus {
    --text_color: #ff8989;

    background-color: black;
    font-family: JetBrains Mono;
    font-size: 16px;
    color: var(--text_color);
    padding: 5px;
}

#loading-screen {
    display: grid;
    justify-content: center;
    align-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-color: black;
}

#loading-box {
    display: grid;
    grid-template-columns: repeat(10, 15px);
    grid-template-rows: 10px;
    gap: 2px;
    width: fit-content;
    height: fit-content;
    border: 1px solid var(--text_color);
    padding: 2px;
}

.progress-box {
    background-color: var(--text_color);
    opacity: 0;
    transition: opacity 0.5s;
}

.welcome-box p {
    font-weight: bold;
}

p, .box {
    display: inline-block;
}

.box {
    width: 98%;
}

p {
    margin: 0;
}

.terminal-text, .terminal-text:focus {
    width: 92%;
    border: 0px;
    outline: none;
}