.typd-txt {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Orbitron", sans-serif;
    font-size: 16pt;
    font-weight: normal;
    letter-spacing: 0.2rem;
    padding: 20px;
    margin: 0 auto;
    width: 70%;
    line-height: 1.2;
    text-align: center;
    white-space: pre-line;
    z-index: 10;
}

.highlight {
    font-size: 20pt;
    font-weight: bold;
    color: rgb(252, 252, 252);
}

.char {
    color: #fff;
    transition: color ease-out 0.3s, text-shadow ease-out 0.3s;
    text-shadow: 0 0 4rem #fff;
}

.char.fade-in {
    color: rgb(252, 252, 252);
    transition: color ease-out 0.3s, text-shadow ease-out 0.3s;
    text-shadow: 0 0 1rem rgb(161, 172, 207);
}

/* Responsive text sizes for different devices */
@media (max-width: 1024px) {
    .typd-txt {
        font-size: 14pt;
    }
    .highlight {
        font-size: 18pt;
    }
}

@media (max-width: 768px) {
    .typd-txt {
        font-size: 12pt;
    }
    .highlight {
        font-size: 16pt;
    }
}

@media (max-width: 480px) {
    .typd-txt {
        font-size: 10pt;
    }
    .highlight {
        font-size: 14pt;
    }
}

/* Larger text size for larger screens */
@media (min-width: 1200px) {
    .typd-txt {
        font-size: 20pt;
    }
    .highlight {
        font-size: 24pt;
    }
}
