body {
    font-family: 'Inter', sans-serif;
    background-color: #0C0D0E;
    margin: 0;
    padding: 0;
}

.bg-dots {
    background-image: radial-gradient(#2e2e2e 1px, transparent 1px);
    background-size: 44px 44px;
}

@media (min-width: 1077px) {
    .my-custom-breakpoint {
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
    }
}

[x-cloak] {
    display: none !important;
}

.animated-border {
    position: relative;
    z-index: 0;
}

.animated-border::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    border-radius: 0.75rem;
    padding: 1px;
    background: linear-gradient(to top, #C7EB00, #1A1C1E, #C7EB00);
    background-size: 100% 200%;
    background-position: 0% 100%;
    animation: animatedBorder 6s ease-in-out infinite;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
}


@keyframes animatedBorder {
    0% {
        background-position: 0% 100%;
    }

    50% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 0% 100%;
    }
}