@import url('https://fonts.googleapis.com/css2?family=Ubuntu+Mono:wght@400;700&family=Share+Tech+Mono&display=swap');

body {
    font-family: 'Share Tech Mono', monospace;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.glow-shadow {
    box-shadow: 0 0 15px rgba(0, 255, 224, 0.3);
}

.glow-shadow-secondary {
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.3);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse-slow {
    animation: pulse 3s infinite;
}