* {
    box-sizing: border-box;
}

body {
    background: #111;
    font-family: 'Fira Code', monospace;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    padding: 0;
    margin: 0;
}

#input {
    background: transparent;
    color: transparent;
    border: none;
    outline: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999999999999;
}

#terminal {
    cursor: text;
    min-height: 100vh;
    padding: 3px 5px;
}

p {
    margin: 0;
}

#terminal.typing p:last-child::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}
