/* Typetainer functionality */
.typetainer {
    display: flex;
    justify-content: center;
    align-items: center;
}
.typetainer p {
    font-size: 2rem;
    padding: 0.5rem;
    letter-spacing: 0.1rem;
    text-align: center;
    overflow: hidden;
}
.typetainer p span.typed-text {
    font-weight: normal;
    color: gray;
}
.typetainer p span.cursor {
    display: inline-block;
    background-color: #ccc;
    margin-left: 0.1rem;
    width: 3px;
    animation: blink 1s infinite;
}
.typetainer p span.cursor.typing {
    animation: none;
}
@keyframes blink {
    0% {
        background-color: #ccc;
    }
    49% {
        background-color: #ccc;
    }
    50% {
        background-color: transparent;
    }
    99% {
        background-color: transparent;
    }
    100% {
        background-color: #ccc;
    }
}
