@font-face {
    font-family: Bebas;
    src: url(../fonts/BebasNeue-Regular.ttf) format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: Inter;
    src: url(../fonts/Inter-ExtraLight.ttf) format("truetype");
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: Bebas;
}

.f-inter {
    font-family: Inter;
}

nav a.active,
nav a:hover {
    color: #5AE203;
}

.about-clip {
    background-clip: text;
    -webkit-background-clip: text;
    background-image: url('../img/about-bg-1.png');
    background-size: 150%;
    background-repeat: no-repeat;
    color: transparent;
    animation: about-slide 12s ease-in-out infinite both;
}

.marquee {
    --scroll-gap: 2rem;
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--scroll-gap);
}

.marquee__content {
    flex-shrink: 0;
    display: flex;
    justify-content: space-around;
    min-width: 100%;
    gap: var(--scroll-gap);
    animation: scroll 30s linear infinite;
}

@keyframes about-slide {
    from {
        background-position: left;
    }

    50% {
        background-position: right;
    }

    to {
        background-position: left;
    }
}

@keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-100% - var(--scroll-gap)));
    }
  }