.font-orbitron {
    font-family: 'Orbitron', sans-serif;
}

.stars {
    background: radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 3px),
                radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 2px),
                radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 3px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    animation: space-drift 120s linear infinite;
}

@keyframes space-drift {
    from {
        background-position: 0 0, 40px 60px, 130px 270px;
    }
    to {
        background-position: 550px 550px, 390px 410px, 380px 820px;
    }
}

/* Custom Scrollbar for text area if needed */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb {
    background: rgba(6, 182, 212, 0.4);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(6, 182, 212, 0.6);
}
