/*
Theme Name: Midwān
Theme URI: https://algorithmikos.com/
Author: Algorithmikos (Umar Al-Fayez)
Author URI: https://algorithmikos.com/
Description: 
Version: 1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: midwan
Tags: responsive, rtl-language-support, custom-post-types
*/

@import url("tailwind.css");

body {
  font-family: var(--font-family-sans);
}

.glitchy {
  color: #0f0;
  /* bright green for binary */
  /* font-family: 'Geostar', monospace; */
  font-family: monospace;
  text-shadow:
    0 0 5px #0f0,
    0 0 10px #0f0,
    0 0 20px #0f0,
    0 0 30px #0f0;
  animation: glitch-flicker 0.3s infinite alternate;
}

@keyframes glitch-flicker {
  0% {
    opacity: 1;
    text-shadow:
      0 0 5px #0f0,
      0 0 10px #0f0,
      0 0 20px #0f0,
      0 0 30px #0f0;
    transform: translate(0);
  }

  50% {
    opacity: 0.8;
    text-shadow:
      0 0 3px #0f0,
      0 0 6px #0f0,
      0 0 10px #0f0,
      0 0 15px #0f0;
    transform: translate(1px, 0);
  }

  100% {
    opacity: 1;
    text-shadow:
      0 0 5px #0f0,
      0 0 10px #0f0,
      0 0 20px #0f0,
      0 0 30px #0f0;
    transform: translate(0);
  }
}

.rtl {
  direction: rtl;
}

.ltr {
  direction: ltr;
}