.ub {
    font-family: "Ubuntu", sans-serif;
}

.jb {
    font-family: "JetBrainsMono Nerd Font Mono";
    font-weight: bold;
}

html {
    scroll-behavior: smooth;
}

.zal {
    font-family: 'Zalando';
}

/* navbar font */
.nvf {
    font-size: 30px;
    text-align: center;
    font-weight: bold;

}

.nvw {
    width: 3rem;
    height: 3rem;
}

.mobile-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 40;
}

@keyframes pop-up {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pop-on-scroll {
    opacity: 0;
    transform: translateY(15px);
}

.is-visible {
    animation: pop-up 0.6s ease-out forwards;
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal-on-scroll {
    opacity: 0;
}

.reveal-on-scroll.from-left {
    transform: translateX(-40px);
}

.reveal-on-scroll.from-right {
    transform: translateX(40px);
}

.is-visible.from-left {
    animation: slide-in-left 0.7s ease-out forwards;
}

.is-visible.from-right {
    animation: slide-in-right 0.7s ease-out forwards;
}

.bg {
    margin: 0;
    padding: 0;


    min-height: 100vh;

    width: 100%;

    background-color: #ffffff;

    position: relative;

    overflow-x: hidden;

    background-image: radial-gradient(circle 600px at 0% 200px, #fda4af, transparent),
        radial-gradient(circle 600px at 100% 200px, #fda4af, transparent);

    background-attachment: fixed;

    background-repeat: no-repeat;
}