/* https://isomorph.ru/static/css/isomorph.css */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400&display=swap');

.isomorph-brand {
    font-family: 'Orbitron', 'Courier New', monospace !important;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 2px;
    text-decoration: none !important;
    background: transparent;
    color: #888888;
    transition: color 0.2s ease, text-shadow 0.2s ease;
    cursor: pointer;
    display: inline-block;
    animation: glowPulse 20s ease-in-out infinite;
}

.isomorph-brand:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(136, 136, 136, 0.8);
    animation: none;
}

@keyframes glowPulse {
    0% {
        color: #888888;
        text-shadow: none;
    }
    50% {
        color: #cccccc;
        text-shadow: 0 0 5px rgba(136, 136, 136, 0.5);
    }
    100% {
        color: #888888;
        text-shadow: none;
    }
}

@media (max-width: 768px) {
    .isomorph-brand {
        font-size: 12px;
        letter-spacing: 1px;
    }
}