#typed-text {
    display: inline;
}

.typed-cursor {
    font-size: 2rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.5);
    animation: blink 0.8s infinite;
    margin-left: 8px;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}