@import url("https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap");
@import url("https://db.onlinewebfonts.com/c/b4d9c4b60ed0bdb60bde51eadb35bf5f?family=Florian+W05+Regular");

* {
    box-sizing: border-box;
    font-family: "Onest", sans-serif;
    font-weight: 300;
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-width);
}

.title {
    font-family: "Florian W05 Regular", serif;
}

.section-tagline::after {
    display: flex;
    content: "";
    height: 1.5px;
    width: 120px;
    background-color: #c7a386;
}

.navbar-gradient {
    background: #000000;
    background: linear-gradient(
        360deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.gradient-overlay {
    background: #000000;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.75) 100%
    );
}

.font-begum {
    font-family: "Begum", serif;
}

.cndjndjcn {
    font-size: clamp(25px, 2vw, 45px);
}

.loading-animation {
    width: fit-content;
    font-size: clamp(32px, 2.5vw, 45px);
    font-family: "Lato", sans-serif;
    letter-spacing: 1.75px;
    font-weight: bold;
    text-transform: uppercase;
    color: #ffffff00;
    -webkit-text-stroke: 0.75px #fff;
    background: linear-gradient(
            90deg,
            #ffff 33%,
            hsl(0, 0%, 0%, 0) 0 67%,
            #ffff 0
        )
        100%/300% 100% no-repeat text;
    animation: loading 5s steps(20) infinite;
}

.loading-animation:before {
    content: "Processing...";
}

@keyframes loading {
    to {
        background-position: 0;
    }
}
