/* Terminal-inspired styles */ body { line-height: 1.6; } a { transition: color 0.2s ease; } /* Terminal blinking cursor effect */ @keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } } /* Responsive adjustments */ @media (max-width: 640px) { nav { flex-direction: column; gap: 0.5rem; } } /* Print styles */ @media print { body { background-color: white !important; color: black !important; } a { color: black !important; text-decoration: underline !important; } }