/* ???? ??????? ?? CDN */
@import url('https://cdn.jsdelivr.net/npm/vazirmatn@33.003.0/Vazirmatn-font-face.css');

html, body {
    font-family: 'Vazirmatn', sans-serif !important;
}


html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}


@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.blinking-text {
    animation: blink 1s infinite;
    text-align: center;
    color: red;
    margin-top: 20px;
    font-size: 20px;
}