.font-SF-Pro {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 300;
}

.font-cascadia-mono-normal {
    font-family: "Cascadia Mono", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.font-cascadia-mono-normal-semibold {
    font-family: "Cascadia Mono", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.manufacturing-consent-regular {
    font-family: "Manufacturing Consent", system-ui;
    font-weight: 400;
    font-style: normal;
}

.oswald {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}



#welcome-heading {
    font-family: "Cascadia Mono", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: inherit;
    color: whitesmoke;
}

.font-share-tech-regular {
    font-family: "Share Tech", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.font-bebas-neue-regular {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

html,
body {
    min-height: 100vh;
}

.body-gradient {
    min-height: 100vh;
    width: 100vw;
    background: linear-gradient(-45deg, #1e3c72, #2a5298, #6089d6, #f09819, #ec411f);
    background-size: 300% 300%;
    background-attachment: fixed;
    animation: gradientAnimation 120s ease infinite;

    display: flex;
    flex-direction: column;
}


@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

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

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


#global-div.gradient {
    position: relative;
    z-index: 0;
    animation: bg-color infinite 60s;

    min-height: 100vh;
    width: 100vw;
    background-size: auto, 300% 300%;
    background-attachment: fixed;
}

#global-div.gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.55;
    background: linear-gradient(to top, #bd7d39b4, rgba(255, 230, 198, 0.502)),
        url("data:image/svg+xml;utf8,<svg viewBox='0 0 900 900' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><filter id='noiseFilter'><feTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23noiseFilter)'/></svg>");
    background-size: auto;
    background-attachment: fixed;
}



@keyframes bg-color {
    0% {
        background: #fde1be;
    }

    25% {
        background: #fec3a8;
    }

    50% {
        background: #fca377;
    }

    75% {
        background: #fcb8a5;
    }

    100% {
        background: #fcd3a5;
    }
}


.link {
    transition: 0.3s;
}

.link:hover {
    opacity: 70%;
}


.link2 {
    font-weight: 500;
    transition: 0.7s;
}

.link2:hover {
    text-decoration: underline;
    text-underline-offset: 8px;
}

/* remove (x) button from search inputs in WebKit browsers */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.my-search {
    border: none;
}

.my-search:focus {
    outline: none;
    box-shadow: none;
}

#button {
    color: rgba(69, 69, 69, 0.9);
    border-radius: 50px;
    border: 2px solid rgba(255, 246, 239, 0.9);
    background: rgb(255, 246, 239);
    transition: 150ms;
    z-index: 10;
}

#button:hover {
    background-color: transparent;
    cursor: pointer;
    color: whitesmoke;
}

#button-blur {
    pointer-events: none;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 50px;
    background: linear-gradient(-45deg, #FFA63D, #FF3D77, #338AFF, #3CF0C5);
    background-size: 600%;
    animation: anime 16s linear infinite;
    filter: blur(40px);
    z-index: 0;
}

@keyframes anime {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

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

/* pointer on hover */
.draggable {
    cursor: pointer;
    user-select: none;
    touch-action: none;
    /* needed for touch drag */
    transition: transform .15s ease-out;
    will-change: transform;
}

/* only while dragging */
.draggable.dragging {
    cursor: grabbing;
    transition: none;
    z-index: 10000;
}

.drag-placeholder {
    visibility: hidden;
    /* reserve space without showing text */
}

.container {
    display: grid;
    grid-template-rows: 100px, 100px, 100px, 100px, 100px, 100px;
    grid-template-columns: 100px, 100px, 100px, 100px, 100px, 100px;
}




div.htmx-swapping {
    opacity: 0;
    transition: opacity 100ms ease-out;
}

.htmx-settling {
    opacity: 1;
    transition: opacity 100ms ease-in;
}

.fade {
    opacity: 0.5;
    transition: opacity 100ms ease-out;
    pointer-events: none;
}

.tick {
    display: none;
}

button.selected .tick {
    display: inline !important;
}