*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 2px dashed; */
}

a{
  text-decoration: none;
}

.header{
    background: linear-gradient(90deg, #FFD65C, #E6B800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(255, 200, 100, 0.3);
}

@font-face {
    font-family: ticker;
    src: url(./assets/font/MaShanZheng-Regular.ttf);
}

@font-face {
    font-family: samuri;
    src: url(./assets/font/BalooBhaijaan2-VariableFont_wght.ttf);
}

.bg-animate {
  animation: shrink-bg 20s ease-out forwards;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

.bg-animate_r {
  animation: shrink-bg_r 20s ease-out forwards;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes shrink-bg {
  0% {
    background-size: 200% 100%;
  }
  100% {
    background-size: 100% 100%;
  }
}

@keyframes shrink-bg_r {
  0% {
    background-size: 100% 100%;
  }
  100% {
    background-size: 200% 100%;
  }
}