:root {
    --bg-color: #000000;
    --text-main: #fff;
    --text-dim: #6B7280;
    --user-color: #8ae234;
    --path-color: #79a7ec;
    --red: #bb0e0b;
}

body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
}

#terminal {
    width: 100vw;
}

.path {
    color: var(--path-color);
    font-weight: normal;
}

.symbol {
    color: var(--path-color);
}

input[type="text"] {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: inherit;
    font-size: inherit;
    outline: none;
    margin-left: 6.75px;
    margin-bottom: 1px;

    caret-color: var(--text-main);
    /* Makes the blinking cursor match */
}

/* Subtle blinking cursor effect for empty inputs */
input[type="text"]:focus::placeholder {
    color: transparent;
}
