
.body {
    margin: auto;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0c0b14;
    width: 290px;
    border-radius: 5px;
}

h1 {
    font-family: sans-serif, Consolas, monospace;
    font-size: 25px;
    color: orange;
}

.typewriter {
    position: relative;
}

.typewriter::after {
    content: '|';
    position: absolute;
    right: 0;
    color: white;
    background-color: #0c0b14;
    width: 100%;
    animation: writing 4s steps(14) alternate infinite, blink 1s infinite;
}

@keyframes writing {

    to {
        width: 0%;
    }
}

@keyframes blink {
    40% {
        color: transparent;
    }
}


.live{
    color: red;
    animation: blink 1s infinite;
}

.lv{
    margin-left: 10px;
    padding: 5px 5px;
    border-radius: 5px;
    border: none;
}

.lv:hover{
    border: 2px dotted red;
    cursor: pointer;
}