@font-face {
    font-family: 'Material Symbols Outlined';
    font-style: normal;
    font-weight: 100 700;
    src: url(/fonts/material-symbols-outlined.ttf) format('truetype');
}

.material-symbols-outlined {
    font-family: 'Material Symbols Outlined';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: 'liga';

    /* Variable font settings for a premium, clean look */
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 24;
}

/* Size Utilities */
.material-symbols-outlined.text-xl {
    font-size: 1.25rem;
}

.material-symbols-outlined.text-2xl {
    font-size: 1.5rem;
}

.material-symbols-outlined.text-3xl {
    font-size: 1.875rem;
}

.material-symbols-outlined.text-4xl {
    font-size: 2.25rem;
}

.material-symbols-outlined.opsz-20 {
    font-variation-settings: 'OPSZ' 20
}

.material-symbols-outlined.opsz-40 {
    font-variation-settings: 'OPSZ' 40
}

.material-symbols-outlined.opsz-48 {
    font-variation-settings: 'OPSZ' 48
}

/* Animations */
.animate-spin {
    display: inline-block;
    animation: material-spin 2s linear infinite;
}

@keyframes material-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.material-symbols-outlined.text-5xl {
    font-size: 3rem;
}