@import url("./colors.css");

html, body {
    padding: 0;
    margin: 0;
}

#title {
    /* font: bold 150% Consolas, Monaco, monospace; */
    border-right: 0.1em solid;
    width: 25ch;
    white-space: nowrap;
    overflow: hidden;
    animation: typing 3s steps(27, end) infinite, cursor-blink 0.2s step-end infinite alternate;
}

@keyframes typing {
    from {
        width: 0;
    }
}

@keyframes cursor-blink {
    50% {
        border-color: transparent;
    }
}