body {
    margin: 0;
    padding: 0;
    background-color: #2C2F33;
    font-family: 'Consolas';
    color: white;
    font-size: 250%;
    padding: 4%;
}

h1 {
    height: max-content;
    white-space: nowrap;
    overflow: hidden;
    border-right: none;
    letter-spacing: 0em;
    animation: typing 6s steps(26) 0s 1;
}

h1::after {
    margin: none;
    padding: none;
    content: "";
    display: block;
    float: right;
    width: 20px;
    height: 20px;
    background-color: #7289DA;
    border-radius: 50%;
    left: 4%;
    transform: translateX(-7px);
    position: absolute;
    opacity: 0;
    animation: typingcursor 6s steps(26) 0s 1;
}

@keyframes typing {
    from {
        border-right: 6px solid #7289DA;
        width: 0ch;
    }
    to {
        border-right: 6px solid #7289DA;
        width: 26ch;
    }
}

@keyframes typingcursor {
    from {
        opacity: 1;
        margin-left: 0ch;
    }
    to {
        opacity: 1;
        margin-left: 26ch;
    }
}