/* EDIT: Custom Variables - Change fonts and spacing here */
:root {
    --dm-letter-spacing: -0.01em;
    --dm-letter-spacing-tight: -0.04em;
}

body {
    /* EDIT: General Font Family */
    font-family: 'DM Sans', sans-serif;
    letter-spacing: var(--dm-letter-spacing);
}

body * {
    letter-spacing: var(--dm-letter-spacing-tight) !important;
}

.text-huge {
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.9;
    letter-spacing: var(--dm-letter-spacing-tight) !important;
}

.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.secure-image {
    pointer-events: none;
    user-select: none;
}