
@font-face {
  font-family: 'ar';
  src: url('../css/AlJareeda-Title.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'en';
    src: url('../css/nulshockbd.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  
  
  
  .ar-font {
    font-family: 'ar', sans-serif !important;
  }
  
  .en-font {
    font-family: 'en', sans-serif !important;
  }

  .stamp-container {
    width: 200px;
    height: 200px;
    position: relative;
}

.rotating-stamp {
    width: 100%;
    height: 100%;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
