body {
    background-color: black;
    color: whitesmoke;
    font-weight: 600;
    font-size: 20px;
    font-family: 'Courier New', Courier, monospace;
    padding: 1em 1em;
}

p{
    margin-top: -10px;
}

#input {
    display: flex;
    flex-direction: row;
}

.prompt {
    color: whitesmoke;
    white-space: nowrap;
}

.cursor {
    width: 10px;
    height: 20px;
    background-color: whitesmoke;
    margin-top: -10px;
    animation: blink 1s linear 0s infinite normal forwards;
}

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