@import url('https://fonts.googleapis.com/css2?family=Funnel+Sans:ital,wght@0,300..800;1,300..800&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Lexend:wght@100..900&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Prompt:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body{
    background-color: #f6f6f6;
}
* {
    font-family: "Lexend", sans-serif;
    font-weight: 500;
    font-optical-sizing: auto;
}

.hero-section {
    background: rgb(2, 0, 36);
    background: linear-gradient(30deg, rgb(0, 0, 0) 63%, #9F0EC8 100%);
}

@media only screen and (max-width: 600px) {
    .hero-section {
        background: rgb(2, 0, 36);
        background: linear-gradient(180deg, rgb(0, 0, 0) 63%, #9F0EC8 100%);
    }
}

@keyframes upDownAnimation {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
        /* Move up */
    }

    100% {
        transform: translateY(0);
        /* Move down */
    }
}

@keyframes upDownAnimation2 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
        /* Move up */
    }

    100% {
        transform: translateY(0);
        /* Move down */
    }
}

@keyframes upDownAnimation3 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
        /* Move up */
    }

    100% {
        transform: translateY(0);
        /* Move down */
    }
}

.coin-animation-1 {
    animation: upDownAnimation 3.5s ease-in-out infinite;
}

.coin-animation-2 {
    animation: upDownAnimation2 3.5s ease-in-out infinite;
}

.coin-animation-3 {
    animation: upDownAnimation3 3s ease-in-out infinite;
}



@media only screen and (max-width: 600px) {
    .coin-animation-1{
        top: 40% !important;
    }
    .coin-animation-1:nth-child(3){
        top: 60% !important;
    }
    .coin-animation-1:nth-child(1){
        top: 50% !important;
        /* right: 10px !important; */
        left: 10px !important;
    }
    .coin-animation-3{
        top: 30% !important;
        right: -5% !important;
        left:unset !important;
    }
    .coin-animation-3:nth-child(2){
        top: -5% !important;
        right: 10% !important;
        /* left:unset !important; */
    }
    .hero-section {
        background: rgb(2, 0, 36);
        background: linear-gradient(180deg, rgb(0, 0, 0) 63%, #9F0EC8 100%);
    }
}





/* For Chrome, Edge, and Safari */
::-webkit-scrollbar {
    width: 12px; /* Vertical scrollbar width */
    height: 12px; /* Horizontal scrollbar height */
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #888; /* Thumb color */
    border-radius: 6px; /* Thumb rounded edges */
    border: 2px solid transparent; /* Adds space around the thumb */
    background-clip: content-box; /* Keeps the thumb within the scrollbar */
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1; /* Track color */
    border-radius: 6px; /* Track rounded edges */
  }
  
  /* Hover effect for the thumb */
  ::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Darker thumb color on hover */
  }
  
  /* For Firefox */
  * {
    scrollbar-width: thin; /* Makes scrollbar thinner */
    scrollbar-color: #888 #f1f1f1; /* Thumb and track colors */
  }
  
  /* For Internet Explorer 10+ */
  .scrollbar {
    -ms-overflow-style: scrollbar; /* Forces scrollbar style for IE */
  }
  

  