
@font-face {
    font-family: digital-7;
    src: url('./fonts/digital-7.ttf');
}


body{
    background: #168f44;
    font-family: digital-7;
}

.blink{
    animation-name: blinkAnime;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}


@keyframes blinkAnime {
    0%   {color: #faf089;}
  40% {color: transparent;}
  50% {color: transparent;}
  100%   {color: #faf089;}
  }


.scrollhide::-webkit-scrollbar {
    display: none;
    scroll-behavior: smooth;
}

.scrollhide {
    -ms-overflow-style: none; 
    scrollbar-width: none; 
}


.blinkled{
    animation-name: lightblink;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}
@keyframes lightblink {
    0%   {
        height: 0.5rem;
        width: 0.5rem;
    }
    28%{
        height: 1rem;
        width: 1rem;
    }
    40% {
        height: 2rem;
        width: 2rem;
  }
  50% {
        height: 1rem;
        width: 1rem;
  }
  100%   {
        height: 0.5rem;
        width: 0.5rem;
  }
  }


