* {
    font-family: "Inter", sans-serif;
}

h1 {
    font-family: "Mozilla Headline", sans-serif;
}


.special-font {
    font-family: "Pacifico", cursive;
}

.navbar-inner {
    background:transparent;
}

.text-justify {
    text-align: justify;
}

.text-gradient {
    background-image: linear-gradient(
        45deg,
        #006600,
        #008000,
        #339933,
        #66cc66,
        #008000,
        #006600
    );
    background-size: 300% 300%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-move 5s ease infinite;
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
