header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Ensures header stays on top */
}

.autotype-section {
    height: 100vh; /* Takes up the full viewport height */
    display: flex;
    justify-content: center; /* Centers the container horizontally */
    align-items: center; /* Centers the container vertically */
}

.autotype-container {
    font-size: 1.5rem;
    font-weight: 700; /* Bold text */
    max-width: 800px; /* Limits the width for readability */
    text-align: center; /* Centers the text inside the container */
}

.autotype-text {
    white-space: pre-wrap; /* Ensures proper wrapping with spaces */
}

.cursor {
    display: inline-block;
    font-size: 1.5rem;
    animation: blink 0.7s infinite; /* Blinking effect */
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.cursor.stopped {
    animation: none;
    opacity: 1; /* Solid cursor when typing completes */
}
