/*----------------------------------------------
2. Typography
----------------------------------------------*/

@font-face {
    font-family: 'Trap';
    src: url('../fonts/Trap/Trap-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Trap';
    src: url('../fonts/Trap/Trap-Black.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Trap';
    src: url('../fonts/Trap/Trap-Light.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Trap';
    src: url('../fonts/Trap/Trap-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Trap';
    src: url('../fonts/Trap/Trap-Medium.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Trap';
    src: url('../fonts/Trap/Trap-ExtraBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Trap';
    src: url('../fonts/Trap/Trap-SemiBold.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Laisha';
    src: url('../fonts/Laisha/Laisha.otf') format('opentype'), /* Modern Browsers */
         url('../fonts/Laisha/Laisha.ttf') format('truetype');   /* Older Browsers */
    font-weight: normal; /* Adjust if the font has different weights */
    font-style: normal;  /* Adjust if the font has italic variants */
  }

/* #region Typography */

:root {
	--primary-font: Trap;
	--secondary-font: Trap;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1.5rem;
	font-family: var(--secondary-font);  
  line-height: 1.2;
}

/* Define the animation */
@keyframes colorChange {
    0% {
      color: #ff7300; /* Start with red */
    }
    50% {
      color: #BF91BF; /* Transition to green */
    }
    75% {
        color: #00ff77; /* Transition to green */
    }
    100% {
      color: #00aeff; /* End with blue */
    }
  }


.shehu {
    animation: colorChange 8s infinite; /* 5s duration, infinite loop */
	font-family: 'Laisha', sans-serif; 
}

body {
    background: #0e182a;
}
.border-dashed {
    border-style: dashed !important;
  }
  
  .border-dotted {
    border-style: dotted !important;
  }
  #pdf-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 95%;
    padding: 0px;
}
canvas {
    max-width: 95%;
    height: auto;
    border: 1px solid #ddd;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}  
.corner-image {
  width: 80%;  /* Adjust width as needed */
  height: auto;
  border-top-left-radius: 8px; /* Optional: round the corner */
}
/* Hide footer-a on small screens */
#footer-a {
  display: block;  /* Show by default (large screens) */
}

#footer-b {
  display: none; /* Hide by default */
}

/* Show footer-b on smaller screens, hide footer-a */
@media (max-width: 992px) {
  #footer-a {
      display: none;
  }
  #footer-b {
      display: block;
  }
}

