<!DOCTYPE html>
<html lang="en" class="no-js no-svg">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="profile" href="https://gmpg.org/xfn/11">

<script>(function(html){html.className = html.className.replace(/\bno-js\b/,'js')})(document.documentElement);</script>
<title>Kylan and Kristen &#8211; Starring Lainey, Henry, and Brody!</title>
<meta name='robots' content='max-image-preview:large' />

<!-- Async WordPress.com Remote Login -->
<script id="wpcom_remote_login_js">
var wpcom_remote_login_extra_auth = '';
function wpcom_remote_login_remove_dom_node_id( element_id ) {
	var dom_node = document.getElementById( element_id );
	if ( dom_node ) { dom_node.parentNode.removeChild( dom_node ); }
}
function wpcom_remote_login_remove_dom_node_classes( class_name ) {
	var dom_nodes = document.querySelectorAll( '.' + class_name );
	for ( var i = 0; i < dom_nodes.length; i++ ) {
		dom_nodes[ i ].parentNode.removeChild( dom_nodes[ i ] );
	}
}
function wpcom_remote_login_final_cleanup() {
	wpcom_remote_login_remove_dom_node_classes( "wpcom_remote_login_msg" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_validate" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_js" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_iframe" );
	wpcom_remote_login_remove_dom_node_id( "wpcom_request_access_styles" );
}

// Watch for messages back from the remote login
window.addEventListener( "message", function( e ) {
	if ( e.origin === "https://r-login.wordpress.com" ) {
		var data = {};
		try {
			data = JSON.parse( e.data );
		} catch( e ) {
			wpcom_remote_login_final_cleanup();
			return;
		}

		if ( data.msg === 'LOGIN' ) {
			// Clean up the login check iframe
			wpcom_remote_login_remove_dom_node_id( "wpcom_remote_login_key" );

			var id_regex = new RegExp( /^[0-9]+$/ );
			var token_regex = new RegExp( /^.*|.*|.*$/ );
			if (
				token_regex.test( data.token )
				&& id_regex.test( data.wpcomid )
			) {
				// We have everything we need to ask for a login
				var script = document.createElement( "script" );
				script.setAttribute( "id", "wpcom_remote_login_validate" );
				script.src = '/remote-login.php?wpcom_remote_login=validate'
					+ '&wpcomid=' + data.wpcomid
					+ '&token=' + encodeURIComponent( data.token )
					+ '&host=' + window.location.protocol
					+ '//' + window.location.hostname
					+ '&postid=8098'
					+ '&is_singular=';
				document.body.appendChild( script );
			}

			return;
		}

		// Safari ITP, not logged in, so redirect
		if ( data.msg === 'LOGIN-REDIRECT' ) {
			window.location = 'https://wordpress.com/log-in?redirect_to=' + window.location.href;
			return;
		}

		// Safari ITP, storage access failed, remove the request
		if ( data.msg === 'LOGIN-REMOVE' ) {
			var css_zap = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } @media screen and ( max-width: 782px ) { html { margin-top: 0 !important; } * html body { margin-top: 0 !important; } }';
			var style_zap = document.createElement( 'style' );
			style_zap.type = 'text/css';
			style_zap.appendChild( document.createTextNode( css_zap ) );
			document.body.appendChild( style_zap );

			var e = document.getElementById( 'wpcom_request_access_iframe' );
			e.parentNode.removeChild( e );

			document.cookie = 'wordpress_com_login_access=denied; path=/; max-age=31536000';

			return;
		}

		// Safari ITP
		if ( data.msg === 'REQUEST_ACCESS' ) {
			console.log( 'request access: safari' );

			// Check ITP iframe enable/disable knob
			if ( wpcom_remote_login_extra_auth !== 'safari_itp_iframe' ) {
				return;
			}

			// If we are in a "private window" there is no ITP.
			var private_window = false;
			try {
				var opendb = window.openDatabase( null, null, null, null );
			} catch( e ) {
				private_window = true;
			}

			if ( private_window ) {
				console.log( 'private window' );
				return;
			}

			var iframe = document.createElement( 'iframe' );
			iframe.id = 'wpcom_request_access_iframe';
			iframe.setAttribute( 'scrolling', 'no' );
			iframe.setAttribute( 'sandbox', 'allow-storage-access-by-user-activation allow-scripts allow-same-origin allow-top-navigation-by-user-activation' );
			iframe.src = 'https://r-login.wordpress.com/remote-login.php?wpcom_remote_login=request_access&origin=' + encodeURIComponent( data.origin ) + '&wpcomid=' + encodeURIComponent( data.wpcomid );

			var css = 'html { -webkit-transition: margin-top 1s; transition: margin-top 1s; } /* 9001 */ html { margin-top: 46px !important; } * html body { margin-top: 46px !important; } @media screen and ( max-width: 660px ) { html { margin-top: 71px !important; } * html body { margin-top: 71px !important; } #wpcom_request_access_iframe { display: block; height: 71px !important; } } #wpcom_request_access_iframe { border: 0px; height: 46px; position: fixed; top: 0; left: 0; width: 100%; min-width: 100%; z-index: 99999; background: #23282d; } ';

			var style = document.createElement( 'style' );
			style.type = 'text/css';
			style.id = 'wpcom_request_access_styles';
			style.appendChild( document.createTextNode( css ) );
			document.body.appendChild( style );

			document.body.appendChild( iframe );
		}

		if ( data.msg === 'DONE' ) {
			wpcom_remote_login_final_cleanup();
		}
	}
}, false );

// Inject the remote login iframe after the page has had a chance to load
// more critical resources
window.addEventListener( "DOMContentLoaded", function( e ) {
	var iframe = document.createElement( "iframe" );
	iframe.style.display = "none";
	iframe.setAttribute( "scrolling", "no" );
	iframe.setAttribute( "id", "wpcom_remote_login_key" );
	iframe.src = "https://r-login.wordpress.com/remote-login.php"
		+ "?wpcom_remote_login=key"
		+ "&origin=aHR0cHM6Ly9reWxhbmFuZGtyaXN0ZW4uY29t"
		+ "&wpcomid=145008588"
		+ "&time=1740322932";
	document.body.appendChild( iframe );
}, false );
</script>
<link rel='dns-prefetch' href='//s1.wp.com' />
<link rel='dns-prefetch' href='//s2.wp.com' />
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel="alternate" type="application/rss+xml" title="Kylan and Kristen &raquo; Feed" href="https://kylanandkristen.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="Kylan and Kristen &raquo; Comments Feed" href="https://kylanandkristen.com/comments/feed/" />
	<script type="text/javascript">
		/* <![CDATA[ */
		function addLoadEvent(func) {
			var oldonload = window.onload;
			if (typeof window.onload != 'function') {
				window.onload = func;
			} else {
				window.onload = function () {
					oldonload();
					func();
				}
			}
		}
		/* ]]> */
	</script>
	<script>
window._wpemojiSettings = {"baseUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/72x72\/","ext":".png","svgUrl":"https:\/\/s0.wp.com\/wp-content\/mu-plugins\/wpcom-smileys\/twemoji\/2\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/s2.wp.com\/wp-includes\/js\/wp-emoji-release.min.js?m=1719498190i&ver=6.7.2-RC1-59780"}};
/*! This file is auto-generated */
!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83d\udc26\u200d\u2b1b","\ud83d\udc26\u200b\u2b1b")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
</script>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-0-1' href='https://s2.wp.com/wp-content/mu-plugins/jetpack-plugin/sun/modules/infinite-scroll/infinity.css?m=1685115060i&cssminify=yes' type='text/css' media='all' />
<style id='wp-emoji-styles-inline-css'>

	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;
	}
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-2-1' href='https://s1.wp.com/_static/??-eJyljkEKwyAQRS9UMxoCWZWeRc1gTY3KzNjg7Zt2U+gq0OXn8R4f9qp8yYJZoKYWYmYI7ZgOKRyEEJ6jHvQwgmsxLeBS8Q+VoiNLHVh6wsEzX+C/kNxxOxP6WAwrSrVv3fbSRAWKy+kvPwmyEnPgr37brmaetNaTMfP6AnHzajo=&cssminify=yes' type='text/css' media='all' />
<style id='wp-block-library-inline-css'>
.has-text-align-justify {
	text-align:justify;
}
.has-text-align-justify{text-align:justify;}
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-4-1' href='https://s2.wp.com/_static/??-eJzTLy/QzcxLzilNSS3WzyrWz01NyUxMzUnNTc0rQeEU5CRWphbp5qSmJyZX6uVm5uklFxfr6OPTDpRD5sM02efaGpoZmFkYGRuZGmQBAHPvL0Y=&cssminify=yes' type='text/css' media='all' />
<style id='jetpack-sharing-buttons-style-inline-css'>
.jetpack-sharing-buttons__services-list{display:flex;flex-direction:row;flex-wrap:wrap;gap:0;list-style-type:none;margin:5px;padding:0}.jetpack-sharing-buttons__services-list.has-small-icon-size{font-size:12px}.jetpack-sharing-buttons__services-list.has-normal-icon-size{font-size:16px}.jetpack-sharing-buttons__services-list.has-large-icon-size{font-size:24px}.jetpack-sharing-buttons__services-list.has-huge-icon-size{font-size:36px}@media print{.jetpack-sharing-buttons__services-list{display:none!important}}.editor-styles-wrapper .wp-block-jetpack-sharing-buttons{gap:0;padding-inline-start:0}ul.jetpack-sharing-buttons__services-list.has-background{padding:1.25em 2.375em}
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-6-1' href='https://s2.wp.com/wp-content/plugins/coblocks/2.18.1-simple-rev.4/dist/coblocks-style.css?m=1681832297i&cssminify=yes' type='text/css' media='all' />
<style id='classic-theme-styles-inline-css'>
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-8-1' href='https://s1.wp.com/_static/??/wp-content/mu-plugins/core-compat/wp-mediaelement.css,/wp-content/mu-plugins/wpcom-bbpress-premium-themes.css?m=1432920480j&cssminify=yes' type='text/css' media='all' />
<style id='global-styles-inline-css'>
: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--font-family--albert-sans: 'Albert Sans', sans-serif;--wp--preset--font-family--alegreya: Alegreya, serif;--wp--preset--font-family--arvo: Arvo, serif;--wp--preset--font-family--bodoni-moda: 'Bodoni Moda', serif;--wp--preset--font-family--bricolage-grotesque: 'Bricolage Grotesque', sans-serif;--wp--preset--font-family--cabin: Cabin, sans-serif;--wp--preset--font-family--chivo: Chivo, sans-serif;--wp--preset--font-family--commissioner: Commissioner, sans-serif;--wp--preset--font-family--cormorant: Cormorant, serif;--wp--preset--font-family--courier-prime: 'Courier Prime', monospace;--wp--preset--font-family--crimson-pro: 'Crimson Pro', serif;--wp--preset--font-family--dm-mono: 'DM Mono', monospace;--wp--preset--font-family--dm-sans: 'DM Sans', sans-serif;--wp--preset--font-family--dm-serif-display: 'DM Serif Display', serif;--wp--preset--font-family--domine: Domine, serif;--wp--preset--font-family--eb-garamond: 'EB Garamond', serif;--wp--preset--font-family--epilogue: Epilogue, sans-serif;--wp--preset--font-family--fahkwang: Fahkwang, sans-serif;--wp--preset--font-family--figtree: Figtree, sans-serif;--wp--preset--font-family--fira-sans: 'Fira Sans', sans-serif;--wp--preset--font-family--fjalla-one: 'Fjalla One', sans-serif;--wp--preset--font-family--fraunces: Fraunces, serif;--wp--preset--font-family--gabarito: Gabarito, system-ui;--wp--preset--font-family--ibm-plex-mono: 'IBM Plex Mono', monospace;--wp--preset--font-family--ibm-plex-sans: 'IBM Plex Sans', sans-serif;--wp--preset--font-family--ibarra-real-nova: 'Ibarra Real Nova', serif;--wp--preset--font-family--instrument-serif: 'Instrument Serif', serif;--wp--preset--font-family--inter: Inter, sans-serif;--wp--preset--font-family--josefin-sans: 'Josefin Sans', sans-serif;--wp--preset--font-family--jost: Jost, sans-serif;--wp--preset--font-family--libre-baskerville: 'Libre Baskerville', serif;--wp--preset--font-family--libre-franklin: 'Libre Franklin', sans-serif;--wp--preset--font-family--literata: Literata, serif;--wp--preset--font-family--lora: Lora, serif;--wp--preset--font-family--merriweather: Merriweather, serif;--wp--preset--font-family--montserrat: Montserrat, sans-serif;--wp--preset--font-family--newsreader: Newsreader, serif;--wp--preset--font-family--noto-sans-mono: 'Noto Sans Mono', sans-serif;--wp--preset--font-family--nunito: Nunito, sans-serif;--wp--preset--font-family--open-sans: 'Open Sans', sans-serif;--wp--preset--font-family--overpass: Overpass, sans-serif;--wp--preset--font-family--pt-serif: 'PT Serif', serif;--wp--preset--font-family--petrona: Petrona, serif;--wp--preset--font-family--piazzolla: Piazzolla, serif;--wp--preset--font-family--playfair-display: 'Playfair Display', serif;--wp--preset--font-family--plus-jakarta-sans: 'Plus Jakarta Sans', sans-serif;--wp--preset--font-family--poppins: Poppins, sans-serif;--wp--preset--font-family--raleway: Raleway, sans-serif;--wp--preset--font-family--roboto: Roboto, sans-serif;--wp--preset--font-family--roboto-slab: 'Roboto Slab', serif;--wp--preset--font-family--rubik: Rubik, sans-serif;--wp--preset--font-family--rufina: Rufina, serif;--wp--preset--font-family--sora: Sora, sans-serif;--wp--preset--font-family--source-sans-3: 'Source Sans 3', sans-serif;--wp--preset--font-family--source-serif-4: 'Source Serif 4', serif;--wp--preset--font-family--space-mono: 'Space Mono', monospace;--wp--preset--font-family--syne: Syne, sans-serif;--wp--preset--font-family--texturina: Texturina, serif;--wp--preset--font-family--urbanist: Urbanist, sans-serif;--wp--preset--font-family--work-sans: 'Work Sans', sans-serif;--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;}.has-albert-sans-font-family{font-family: var(--wp--preset--font-family--albert-sans) !important;}.has-alegreya-font-family{font-family: var(--wp--preset--font-family--alegreya) !important;}.has-arvo-font-family{font-family: var(--wp--preset--font-family--arvo) !important;}.has-bodoni-moda-font-family{font-family: var(--wp--preset--font-family--bodoni-moda) !important;}.has-bricolage-grotesque-font-family{font-family: var(--wp--preset--font-family--bricolage-grotesque) !important;}.has-cabin-font-family{font-family: var(--wp--preset--font-family--cabin) !important;}.has-chivo-font-family{font-family: var(--wp--preset--font-family--chivo) !important;}.has-commissioner-font-family{font-family: var(--wp--preset--font-family--commissioner) !important;}.has-cormorant-font-family{font-family: var(--wp--preset--font-family--cormorant) !important;}.has-courier-prime-font-family{font-family: var(--wp--preset--font-family--courier-prime) !important;}.has-crimson-pro-font-family{font-family: var(--wp--preset--font-family--crimson-pro) !important;}.has-dm-mono-font-family{font-family: var(--wp--preset--font-family--dm-mono) !important;}.has-dm-sans-font-family{font-family: var(--wp--preset--font-family--dm-sans) !important;}.has-dm-serif-display-font-family{font-family: var(--wp--preset--font-family--dm-serif-display) !important;}.has-domine-font-family{font-family: var(--wp--preset--font-family--domine) !important;}.has-eb-garamond-font-family{font-family: var(--wp--preset--font-family--eb-garamond) !important;}.has-epilogue-font-family{font-family: var(--wp--preset--font-family--epilogue) !important;}.has-fahkwang-font-family{font-family: var(--wp--preset--font-family--fahkwang) !important;}.has-figtree-font-family{font-family: var(--wp--preset--font-family--figtree) !important;}.has-fira-sans-font-family{font-family: var(--wp--preset--font-family--fira-sans) !important;}.has-fjalla-one-font-family{font-family: var(--wp--preset--font-family--fjalla-one) !important;}.has-fraunces-font-family{font-family: var(--wp--preset--font-family--fraunces) !important;}.has-gabarito-font-family{font-family: var(--wp--preset--font-family--gabarito) !important;}.has-ibm-plex-mono-font-family{font-family: var(--wp--preset--font-family--ibm-plex-mono) !important;}.has-ibm-plex-sans-font-family{font-family: var(--wp--preset--font-family--ibm-plex-sans) !important;}.has-ibarra-real-nova-font-family{font-family: var(--wp--preset--font-family--ibarra-real-nova) !important;}.has-instrument-serif-font-family{font-family: var(--wp--preset--font-family--instrument-serif) !important;}.has-inter-font-family{font-family: var(--wp--preset--font-family--inter) !important;}.has-josefin-sans-font-family{font-family: var(--wp--preset--font-family--josefin-sans) !important;}.has-jost-font-family{font-family: var(--wp--preset--font-family--jost) !important;}.has-libre-baskerville-font-family{font-family: var(--wp--preset--font-family--libre-baskerville) !important;}.has-libre-franklin-font-family{font-family: var(--wp--preset--font-family--libre-franklin) !important;}.has-literata-font-family{font-family: var(--wp--preset--font-family--literata) !important;}.has-lora-font-family{font-family: var(--wp--preset--font-family--lora) !important;}.has-merriweather-font-family{font-family: var(--wp--preset--font-family--merriweather) !important;}.has-montserrat-font-family{font-family: var(--wp--preset--font-family--montserrat) !important;}.has-newsreader-font-family{font-family: var(--wp--preset--font-family--newsreader) !important;}.has-noto-sans-mono-font-family{font-family: var(--wp--preset--font-family--noto-sans-mono) !important;}.has-nunito-font-family{font-family: var(--wp--preset--font-family--nunito) !important;}.has-open-sans-font-family{font-family: var(--wp--preset--font-family--open-sans) !important;}.has-overpass-font-family{font-family: var(--wp--preset--font-family--overpass) !important;}.has-pt-serif-font-family{font-family: var(--wp--preset--font-family--pt-serif) !important;}.has-petrona-font-family{font-family: var(--wp--preset--font-family--petrona) !important;}.has-piazzolla-font-family{font-family: var(--wp--preset--font-family--piazzolla) !important;}.has-playfair-display-font-family{font-family: var(--wp--preset--font-family--playfair-display) !important;}.has-plus-jakarta-sans-font-family{font-family: var(--wp--preset--font-family--plus-jakarta-sans) !important;}.has-poppins-font-family{font-family: var(--wp--preset--font-family--poppins) !important;}.has-raleway-font-family{font-family: var(--wp--preset--font-family--raleway) !important;}.has-roboto-font-family{font-family: var(--wp--preset--font-family--roboto) !important;}.has-roboto-slab-font-family{font-family: var(--wp--preset--font-family--roboto-slab) !important;}.has-rubik-font-family{font-family: var(--wp--preset--font-family--rubik) !important;}.has-rufina-font-family{font-family: var(--wp--preset--font-family--rufina) !important;}.has-sora-font-family{font-family: var(--wp--preset--font-family--sora) !important;}.has-source-sans-3-font-family{font-family: var(--wp--preset--font-family--source-sans-3) !important;}.has-source-serif-4-font-family{font-family: var(--wp--preset--font-family--source-serif-4) !important;}.has-space-mono-font-family{font-family: var(--wp--preset--font-family--space-mono) !important;}.has-syne-font-family{font-family: var(--wp--preset--font-family--syne) !important;}.has-texturina-font-family{font-family: var(--wp--preset--font-family--texturina) !important;}.has-urbanist-font-family{font-family: var(--wp--preset--font-family--urbanist) !important;}.has-work-sans-font-family{font-family: var(--wp--preset--font-family--work-sans) !important;}
: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;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-10-1' href='https://s1.wp.com/_static/??-eJyVjWEKgzAUgy9kfcyB9s/YWWyJzFmfYp4r3t6O7QDbnwRCvkTy6uKiBjWxB2ZQ1j2I5RIcxKsYoNKTMMpQmh91aQwb3LD1OqVR60hW8tsW7Uj4B/ieF0JCWuLEN3yfb5fu2njf+dY/TyIdS2A=&cssminify=yes' type='text/css' media='all' />
<style id='twentyseventeen-style-inline-css'>
.site-content-contain {background-color: #eeeeee; background-image: url(""); background-position: left top; background-size: auto; background-repeat: repeat; background-attachment: scroll; }
</style>
<!--[if lt IE 9]>
<link rel='stylesheet' id='twentyseventeen-ie8-css' href='https://s2.wp.com/wp-content/themes/pub/twentyseventeen/assets/css/ie8.css?m=1488830721i&#038;ver=20161202' media='all' />
<![endif]-->
<link crossorigin='anonymous' rel='stylesheet' id='all-css-12-1' href='https://s0.wp.com/wp-content/themes/pub/twentyseventeen/assets/css/style-wpcom.css?m=1603382130i&cssminify=yes' type='text/css' media='all' />
<style id='akismet-widget-style-inline-css'>

			.a-stats {
				--akismet-color-mid-green: #357b49;
				--akismet-color-white: #fff;
				--akismet-color-light-grey: #f6f7f7;

				max-width: 350px;
				width: auto;
			}

			.a-stats * {
				all: unset;
				box-sizing: border-box;
			}

			.a-stats strong {
				font-weight: 600;
			}

			.a-stats a.a-stats__link,
			.a-stats a.a-stats__link:visited,
			.a-stats a.a-stats__link:active {
				background: var(--akismet-color-mid-green);
				border: none;
				box-shadow: none;
				border-radius: 8px;
				color: var(--akismet-color-white);
				cursor: pointer;
				display: block;
				font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen-Sans', 'Ubuntu', 'Cantarell', 'Helvetica Neue', sans-serif;
				font-weight: 500;
				padding: 12px;
				text-align: center;
				text-decoration: none;
				transition: all 0.2s ease;
			}

			/* Extra specificity to deal with TwentyTwentyOne focus style */
			.widget .a-stats a.a-stats__link:focus {
				background: var(--akismet-color-mid-green);
				color: var(--akismet-color-white);
				text-decoration: none;
			}

			.a-stats a.a-stats__link:hover {
				filter: brightness(110%);
				box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 0 2px rgba(0, 0, 0, 0.16);
			}

			.a-stats .count {
				color: var(--akismet-color-white);
				display: block;
				font-size: 1.5em;
				line-height: 1.4;
				padding: 0 13px;
				white-space: nowrap;
			}
		
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-14-1' href='https://s0.wp.com/_static/??-eJx9jEEOwjAMBD9EcHNoxQXxlhDc4OLYUeNQ8XuCxAEkxGl3VpqFrbioYigGubnCLZFUWPHMmnpNEOsn7jvu4LeUUB1rDEYqX+BmDrT+Uxe0EuLtzVCbQNZLY6xAMpOQoatxVWawK+Y+29YvHhXvPRDldX7KRz8dRu/HYRqWJ4VCUdQ=&cssminify=yes' type='text/css' media='all' />
<style id='jetpack-global-styles-frontend-style-inline-css'>
:root { --font-headings: unset; --font-base: unset; --font-headings-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; --font-base-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;}
</style>
<link crossorigin='anonymous' rel='stylesheet' id='all-css-16-1' href='https://s2.wp.com/wp-content/themes/h4/global.css?m=1420737423i&cssminify=yes' type='text/css' media='all' />
<script id="wpcom-actionbar-placeholder-js-extra">
var actionbardata = {"siteID":"145008588","postID":"0","siteURL":"https:\/\/kylanandkristen.com","xhrURL":"https:\/\/kylanandkristen.com\/wp-admin\/admin-ajax.php","nonce":"cd07bda8e7","isLoggedIn":"","statusMessage":"","subsEmailDefault":"instantly","proxyScriptUrl":"https:\/\/s0.wp.com\/wp-content\/js\/wpcom-proxy-request.js?ver=20211021","i18n":{"followedText":"New posts from this site will now appear in your <a href=\"https:\/\/wordpress.com\/reader\">Reader<\/a>","foldBar":"Collapse this bar","unfoldBar":"Expand this bar","shortLinkCopied":"Shortlink copied to clipboard."}};
</script>
<script id="jetpack-mu-wpcom-settings-js-before">
var JETPACK_MU_WPCOM_SETTINGS = {"assetsUrl":"https:\/\/s1.wp.com\/wp-content\/mu-plugins\/jetpack-mu-wpcom-plugin\/sun\/jetpack_vendor\/automattic\/jetpack-mu-wpcom\/src\/build\/"};
</script>
<script crossorigin='anonymous' type='text/javascript'  src='https://s2.wp.com/_static/??-eJx9juEKAiEQhF8oTyrq/BM9y2VLp7hq7nrm27dUP6IiWBiY+WYZ3bJy0YZ6BtJe7lqh9JcM6OLgaaX/QQrdpUwM77BNkSHy98OWbUKVS7p1VUA84h+dEvjJfGY8A8qEXE+amxidYBEBiHoiAn6smxnDTppHPKzH7caY0eyNvwNrHlbp'></script>
<script id="rlt-proxy-js-after">
	rltInitialize( {"token":null,"iframeOrigins":["https:\/\/widgets.wp.com"]} );
</script>
<link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://kylanandkristen.wordpress.com/xmlrpc.php?rsd" />
<meta name="generator" content="WordPress.com" />
<link rel='shortlink' href='https://wp.me/9Ormc' />

<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="website" />
<meta property="og:title" content="Kylan and Kristen" />
<meta property="og:description" content="Starring Lainey, Henry, and Brody!" />
<meta property="og:url" content="https://kylanandkristen.com/" />
<meta property="og:site_name" content="Kylan and Kristen" />
<meta property="og:image" content="https://kylanandkristen.com/wp-content/uploads/2018/04/cropped-30992539012_07a854ba91_o.jpg?w=200" />
<meta property="og:image:width" content="200" />
<meta property="og:image:height" content="200" />
<meta property="og:image:alt" content="" />
<meta property="og:locale" content="en_US" />

<!-- End Jetpack Open Graph Tags -->
<link rel="search" type="application/opensearchdescription+xml" href="https://kylanandkristen.com/osd.xml" title="Kylan and Kristen" />
<link rel="search" type="application/opensearchdescription+xml" href="https://s1.wp.com/opensearch.xml" title="WordPress.com" />
<meta name="theme-color" content="#eeeeee" />
<meta name="description" content="Starring Lainey, Henry, and Brody!" />
<style id="custom-background-css">
body.custom-background { background-color: #eeeeee; }
</style>
	<style type="text/css" id="custom-colors-css">
	.entry-content a img,
	.widget a img {
		-webkit-box-shadow: 0 0 0 8px #eeeeee;
		box-shadow: 0 0 0 8px #eeeeee;
	}

	.entry-title a,
	.entry-meta a,
	.blog .entry-meta a.post-edit-link,
	.archive .entry-meta a.post-edit-link,
	.search .entry-meta a.post-edit-link,
	.page-links a,
	.page-links a .page-number,
	.entry-footer a,
	.entry-footer .cat-links a,
	.entry-footer .tags-links a,
	.edit-link a,
	.post-navigation a,
	.logged-in-as a,
	.comment-navigation a,
	.comment-metadata a,
	.comment-metadata a.comment-edit-link,
	.comment-reply-link,
	a .nav-title,
	.pagination a,
	.comments-pagination a,
	.widget .widget-title a,
	.widget ul li a,
	.site-footer .widget-area ul li a,
	.site-info a,
	.widget_jetpack_display_posts_widget .jetpack-display-remote-posts h4 a,
	.site-footer .widget_jetpack_display_posts_widget .jetpack-display-remote-posts h4 a,
	div#jp-relatedposts .jp-relatedposts-post-title a {
		-webkit-box-shadow: inset 0 -1px 0 rgba( 238,238,238, 1 );
		box-shadow: inset 0 -1px 0 rgba( 238,238,238, 1 );
	}

	.entry-content a,
	.entry-summary a,
	.widget a,
	.site-footer .widget-area a,
	.posts-navigation a,
	.widget_authors a strong {
		-webkit-box-shadow: inset 0 -1px 0 currentColor;
		box-shadow: inset 0 -1px 0 currentColor;
	}

	.entry-content a:focus,
	.entry-content a:hover,
	.entry-summary a:focus,
	.entry-summary a:hover,
	.widget a:focus,
	.widget a:hover,
	.site-footer .widget-area a:focus,
	.site-footer .widget-area a:hover,
	.posts-navigation a:focus,
	.posts-navigation a:hover,
	.comment-metadata a:focus,
	.comment-metadata a:hover,
	.comment-metadata a.comment-edit-link:focus,
	.comment-metadata a.comment-edit-link:hover,
	.comment-reply-link:focus,
	.comment-reply-link:hover,
	.widget_authors a:focus strong,
	.widget_authors a:hover strong,
	.entry-title a:focus,
	.entry-title a:hover,
	.entry-meta a:focus,
	.entry-meta a:hover,
	.page-links a:focus .page-number,
	.page-links a:hover .page-number,
	.entry-footer a:focus,
	.entry-footer a:hover,
	.entry-footer .cat-links a:focus,
	.entry-footer .cat-links a:hover,
	.entry-footer .tags-links a:focus,
	.entry-footer .tags-links a:hover,
	.post-navigation a:focus,
	.post-navigation a:hover,
	.pagination a:not(.prev):not(.next):focus,
	.pagination a:not(.prev):not(.next):hover,
	.comments-pagination a:not(.prev):not(.next):focus,
	.comments-pagination a:not(.prev):not(.next):hover,
	.logged-in-as a:focus,
	.logged-in-as a:hover,
	a:focus .nav-title,
	a:hover .nav-title,
	.edit-link a:focus,
	.edit-link a:hover,
	.site-info a:focus,
	.site-info a:hover,
	.widget .widget-title a:focus,
	.widget .widget-title a:hover,
	.widget ul li a:focus,
	.widget ul li a:hover,
	.widget_jetpack_display_posts_widget .jetpack-display-remote-posts h4 a:hover,
	.widget_jetpack_display_posts_widget .jetpack-display-remote-posts h4 a:focus,
	.site-footer .widget_jetpack_display_posts_widget .jetpack-display-remote-posts h4 a:hover,
	.site-footer .widget_jetpack_display_posts_widget .jetpack-display-remote-posts h4 a:focus,
	div#jp-relatedposts .jp-relatedposts-post-title a:hover,
	div#jp-relatedposts .jp-relatedposts-post-title a:focus,
	div#jp-relatedposts .jp-relatedposts-post:hover .jp-relatedposts-post-title a,
	div#jp-relatedposts .jp-relatedposts-post:focus .jp-relatedposts-post-title a {
		-webkit-box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 3px 0 currentColor;
		box-shadow: inset 0 0 0 rgba(0, 0, 0, 0), 0 3px 0 currentColor;
	}

	.menu-toggle,
	.menu-toggle:hover,
	.menu-toggle:focus,
	.dropdown-toggle,
	.dropdown-toggle:hover,
	.dropdown-toggle:focus,
	.menu-scroll-down,
	.menu-scroll-down:hover,
	.menu-scroll-down:focus {
		background-color: transparent;
	}

	.gallery-item a,
	.gallery-item a:hover,
	.gallery-item a:focus,
	.widget .tagcloud a,
	.widget .tagcloud a:focus,
	.widget .tagcloud a:hover,
	.widget.widget_tag_cloud a,
	.widget.widget_tag_cloud a:focus,
	.widget.widget_tag_cloud a:hover,
	.wp_widget_tag_cloud a,
	.wp_widget_tag_cloud a:focus,
	.wp_widget_tag_cloud a:hover,
	.widget_authors > ul > li > a,
	.widget_authors > ul > li > a:hover,
	.widget_authors > ul > li > a:focus,
	.site-footer .widget_authors > ul > li > a,
	.site-footer .widget_authors > ul > li > a:hover,
	.site-footer .widget_authors > ul > li > a:focus,
	.entry-footer .edit-link a.post-edit-link:focus,
	.entry-footer .edit-link a.post-edit-link:hover,
	.tiled-gallery a,
	.tiled-gallery a:hover,
	.tiled-gallery a:focus,
	.widget-area .tiled-gallery a,
	.widget-area .tiled-gallery a:hover,
	.widget-area .tiled-gallery a:focus
	.site-footer .widget-area .tiled-gallery a,
	.site-footer .widget-area .tiled-gallery a:hover,
	.site-footer .widget-area .tiled-gallery a:focus,
	.widget_wpcom_social_media_icons_widget ul li a:hover,
	.widget_wpcom_social_media_icons_widget ul li a:focus,
	.widget_recent_images a,
	.site-footer .widget_recent_images a,
	.widget_recent_images a:hover,
	.site-footer .widget_recent_images a:hover,
	.widget_recent_images a:focus,
	.site-footer .widget_recent_images a:focus,
	.widget_google_translate_widget a,
	.site-footer .widget_google_translate_widget a,
	.widget_google_translate_widget a:hover,
	.site-footer .widget_google_translate_widget a:hover,
	.widget_google_translate_widget a:focus,
	.site-footer .widget_google_translate_widget a:focus,
	.widget_google_translate_widget a img,
	.site-footer .widget_google_translate_widget a img {
		-webkit-box-shadow: none;
		box-shadow: none;
	}

	@media screen and ( max-width: 47.9em ) {
		.wrap .main-navigation li li:hover,
		.wrap .main-navigation li li.focus {
			background: transparent;
		}

		.wrap .main-navigation li li:hover > a,
		.wrap .main-navigation li li.focus > a {
			color: inherit;
		}
	}
body,
		.site-content-contain,
		.navigation-top,
		.main-navigation ul,
		.main-navigation ul ul,
		#infinite-footer .container { background-color: #eeeeee;}
.site-header,
		.single-featured-image-header { background-color: #E8E8E8;}
input[type="text"],
		input[type="email"],
		input[type="url"],
		input[type="password"],
		input[type="search"],
		input[type="number"],
		input[type="tel"],
		input[type="range"],
		input[type="date"],
		input[type="month"],
		input[type="week"],
		input[type="time"],
		input[type="datetime"],
		input[type="datetime-local"],
		input[type="color"],
		textarea,
		select,
		fieldset { background-color: #E5E5E5;}
pre,
		mark,
		ins,
		button.secondary,
		input[type="reset"],
		input[type="button"].secondary,
		input[type="reset"].secondary,
		input[type="submit"].secondary,
		.prev.page-numbers,
		.next.page-numbers { background-color: #AAAAAA;}
button.secondary:hover,
		button.secondary:focus,
		input[type="reset"]:hover,
		input[type="reset"]:focus,
		input[type="button"].secondary:hover,
		input[type="button"].secondary:focus,
		input[type="reset"].secondary:hover,
		input[type="reset"].secondary:focus,
		input[type="submit"].secondary:hover,
		input[type="submit"].secondary:focus,
		hr { background-color: #727272;}
 tr,
		 thead th,
		 .widget .tagcloud a,
		 .widget.widget_tag_cloud a,
		 .wp_widget_tag_cloud a,
		 .widget_goodreads div[class^="gr_custom_each_container"],
		 #infinite-footer .container { border-color: #AAAAAA;}
.single-featured-image-header,
		.navigation-top,
		.main-navigation li,
		.entry-footer,
		#comments,
		.widget ul li { border-bottom-color: #AAAAAA;}
.navigation-top,
		.main-navigation > div > ul,
		.pagination,
		.comment-navigation,
		.entry-footer,
		.site-footer,
		.twentyseventeen-front-page article:not(.has-post-thumbnail):not(:first-child),
		.widget ul li { border-top-color: #AAAAAA;}
input[type="text"],
		input[type="email"],
		input[type="url"],
		input[type="password"],
		input[type="search"],
		input[type="number"],
		input[type="tel"],
		input[type="range"],
		input[type="date"],
		input[type="month"],
		input[type="week"],
		input[type="time"],
		input[type="datetime"],
		input[type="datetime-local"],
		input[type="color"],
		textarea,
		select,
		fieldset,
		.widget .tagcloud a:hover,
		.widget .tagcloud a:focus,
		.widget.widget_tag_cloud a:hover,
		.widget.widget_tag_cloud a:focus,
		.wp_widget_tag_cloud a:hover,
		.wp_widget_tag_cloud a:focus { border-color: #727272;}
.main-navigation ul li.menu-item-has-children:after,
		.main-navigation ul li.page_item_has_children:after { border-bottom-color: #eeeeee;}
.entry-content a img,
		.widget a img { color: #eeeeee;}
.social-navigation a,
		.site .jetpack_widget_social_icons ul li a { color: #EEEEEE;}
.social-navigation a:hover,
		.social-navigation a:focus,
		.site .jetpack_widget_social_icons ul li a:focus,
		.site .jetpack_widget_social_icons ul li a:hover { color: #000000;}
body,
		input,
		select,
		textarea,
		h3,
		h4,
		h6,
		label,
		.entry-title a,
		.twentyseventeen-front-page .panel-content .recent-posts article,
		.entry-footer .cat-links a,
		.entry-footer .tags-links a,
		.format-quote blockquote,
		.nav-title,
		.comment-body,
		input[type="text"]:focus,
		input[type="email"]:focus,
		input[type="url"]:focus,
		input[type="password"]:focus,
		input[type="search"]:focus,
		input[type="number"]:focus,
		input[type="tel"]:focus,
		input[type="range"]:focus,
		input[type="date"]:focus,
		input[type="month"]:focus,
		input[type="week"]:focus,
		input[type="time"]:focus,
		input[type="datetime"]:focus,
		input[type="datetime-local"]:focus,
		input[type="color"]:focus,
		textarea:focus,
		button.secondary,
		input[type="reset"],
		input[type="button"].secondary,
		input[type="reset"].secondary,
		input[type="submit"].secondary,
		a,
		.site-title,
		.site-title a,
		.navigation-top a,
		.dropdown-toggle,
		.menu-toggle,
		.page .panel-content .entry-title,
		.page-title,
		body.page:not(.twentyseventeen-front-page) .entry-title,
		.page:not(.twentyseventeen-front-page) .entry-title,
		.page-links a .page-number,
		.comment-metadata a.comment-edit-link,
		.comment-reply-link .icon,
		h2.widget-title,
		mark,
		.post-navigation a:focus .icon,
		.post-navigation a:hover .icon,
		.blog .entry-meta a.post-edit-link,
		.archive .entry-meta a.post-edit-link,
		.search .entry-meta a.post-edit-link,
		.twentyseventeen-panel .recent-posts .entry-header .edit-link,
		.widget_goodreads div[class^="gr_custom_container"],
		.widget_goodreads div[class^="gr_custom_container"] a,
		div#jp-relatedposts .jp-relatedposts-post-title a,
		#infinite-footer .blog-info a,
		#infinite-footer .blog-credits,
		#infinite-footer .blog-credits a { color: #444444;}
::-webkit-input-placeholder { color: #383838;}
:-moz-placeholder { color: #383838;}
::-moz-placeholder { color: #383838;}
:-ms-input-placeholder { color: #383838;}
.main-navigation li li:hover,
		.main-navigation li li.focus { color: #444444;}
.main-navigation li li:hover > a,
		.main-navigation li li.focus > a { color: #DBDBDB;}
button:hover,
		button:focus,
		input[type="button"]:hover,
		input[type="button"]:focus,
		input[type="submit"]:hover,
		input[type="submit"]:focus,
		.site-main #infinite-handle span:hover,
		.site-main #infinite-handle span:focus,
		.site-main #infinite-handle span:hover button,
		.site-main #infinite-handle span:hover button:hover,
		.site-main #infinite-handle span:hover button:focus
		.site-main #infinite-handle span:focus button,
		.site-main #infinite-handle span:focus button:hover,
		.site-main #infinite-handle span:focus button:focus { color: #DBDBDB;}
.entry-footer .edit-link a.post-edit-link,
		button,
		input[type="button"],
		input[type="submit"],
		.site-main #infinite-handle span,
		.site-main #infinite-handle span button { color: #000000;}
input[type="text"]:focus,
		input[type="email"]:focus,
		input[type="url"]:focus,
		input[type="password"]:focus,
		input[type="search"]:focus,
		input[type="number"]:focus,
		input[type="tel"]:focus,
		input[type="range"]:focus,
		input[type="date"]:focus,
		input[type="month"]:focus,
		input[type="week"]:focus,
		input[type="time"]:focus,
		input[type="datetime"]:focus,
		input[type="datetime-local"]:focus,
		input[type="color"]:focus,
		textarea:focus,
		.bypostauthor > .comment-body > .comment-meta > .comment-author .avatar,
		div#jp-relatedposts h3.jp-relatedposts-headline em:before { border-color: #444444;}
.entry-footer .cat-links .icon,
		.entry-footer .tags-links .icon,
		h5,
		.main-navigation a:hover,
		.entry-meta,
		.entry-meta a,
		.nav-subtitle,
		.comment-metadata,
		.comment-metadata a,
		.no-comments,
		.comment-awaiting-moderation,
		.page-numbers.current,
		.page-links .page-number,
		.site-description,
		.site-header .navigation-top .menu-scroll-down,
		.widget_rss .rss-date,
		.widget_rss li cite { color: #9D3333;}
h2,
		blockquote,
		input[type="text"],
		input[type="email"],
		input[type="url"],
		input[type="password"],
		input[type="search"],
		input[type="number"],
		input[type="tel"],
		input[type="range"],
		input[type="date"],
		input[type="month"],
		input[type="week"],
		input[type="time"],
		input[type="datetime"],
		input[type="datetime-local"],
		input[type="color"],
		textarea,
		.navigation-top .current-menu-item > a,
		.navigation-top .current_page_item > a,
		.entry-content blockquote.alignleft,
		.entry-content blockquote.alignright,
		.taxonomy-description,
		.site-info a,
		.wp-caption { color: #9D3333;}
button:hover,
		button:focus,
		input[type="button"]:hover,
		input[type="button"]:focus,
		input[type="submit"]:hover,
		input[type="submit"]:focus,
		.prev.page-numbers:focus,
		.prev.page-numbers:hover,
		.next.page-numbers:focus,
		.next.page-numbers:hover,
		.entry-footer .edit-link a.post-edit-link:focus,
		.entry-footer .edit-link a.post-edit-link:hover,
		.main-navigation li li:hover,
		.main-navigation li li.focus,
		.social-navigation a,
		.site .jetpack_widget_social_icons ul li a,
		.site-main #infinite-handle span:hover,
		.site-main #infinite-handle span:focus { background-color: #9d3333;}
.main-navigation ul ul,
		abbr,
		acronym { border-color: #9D3333;}
.main-navigation ul li.menu-item-has-children:before,
		.main-navigation ul li.page_item_has_children:before { border-bottom-color: #9D3333;}
button,
		input[type="button"],
		input[type="submit"],
		input[type="submit"],
		.entry-footer .edit-link a.post-edit-link,
		.social-navigation a:hover,
		.social-navigation a:focus,
		.site .jetpack_widget_social_icons ul li a:focus,
		.site .jetpack_widget_social_icons ul li a:hover,
		.site-main #infinite-handle span { background-color: #dd4545;}
a:hover,
		a:active,
		.entry-content a:focus,
		.entry-content a:hover,
		.entry-summary a:focus,
		.entry-summary a:hover,
		.widget a:focus,
		.widget a:hover,
		.site-footer .widget-area a:focus,
		.site-footer .widget-area a:hover,
		.posts-navigation a:focus,
		.posts-navigation a:hover,
		.comment-metadata a:focus,
		.comment-metadata a:hover,
		.comment-metadata a.comment-edit-link:focus,
		.comment-metadata a.comment-edit-link:hover,
		.comment-reply-link:focus,
		.comment-reply-link:hover,
		.widget_authors a:focus strong,
		.widget_authors a:hover strong,
		.entry-title a:focus,
		.entry-title a:hover,
		.entry-meta a:focus,
		.entry-meta a:hover,
		.colors-dark.blog .entry-meta a.post-edit-link:focus,
		.colors-dark.blog .entry-meta a.post-edit-link:hover,
		.colors-dark.archive .entry-meta a.post-edit-link:focus,
		.colors-dark.archive .entry-meta a.post-edit-link:hover,
		.colors-dark.search .entry-meta a.post-edit-link:focus,
		.colors-dark.search .entry-meta a.post-edit-link:hover,
		.page-links a:focus .page-number,
		.page-links a:hover .page-number,
		.entry-footer .cat-links a:focus,
		.entry-footer .cat-links a:hover,
		.entry-footer .tags-links a:focus,
		.entry-footer .tags-links a:hover,
		.post-navigation a:focus,
		.post-navigation a:hover,
		.pagination a:not(.prev):not(.next):focus,
		.pagination a:not(.prev):not(.next):hover,
		.comments-pagination a:not(.prev):not(.next):focus,
		.comments-pagination a:not(.prev):not(.next):hover,
		.logged-in-as a:focus,
		.logged-in-as a:hover,
		a:focus .nav-title,
		a:hover .nav-title,
		.edit-link a:focus,
		.edit-link a:hover,
		.site-info a:focus,
		.site-info a:hover,
		.widget .widget-title a:focus,
		.widget .widget-title a:hover,
		.widget ul li a:focus,
		.widget ul li a:hover { color: #BF2525;}
</style>
<link rel="icon" href="https://kylanandkristen.com/wp-content/uploads/2018/04/cropped-30992539012_07a854ba91_o.jpg?w=32" sizes="32x32" />
<link rel="icon" href="https://kylanandkristen.com/wp-content/uploads/2018/04/cropped-30992539012_07a854ba91_o.jpg?w=192" sizes="192x192" />
<link rel="apple-touch-icon" href="https://kylanandkristen.com/wp-content/uploads/2018/04/cropped-30992539012_07a854ba91_o.jpg?w=180" />
<meta name="msapplication-TileImage" content="https://kylanandkristen.com/wp-content/uploads/2018/04/cropped-30992539012_07a854ba91_o.jpg?w=270" />
</head>

<body class="home blog custom-background wp-embed-responsive customizer-styles-applied group-blog hfeed has-header-image has-sidebar colors-light cannot-edit jetpack-reblog-enabled custom-colors">
<div id="page" class="site">
	<a class="skip-link screen-reader-text" href="#content">
		Skip to content	</a>

	<header id="masthead" class="site-header">

		<div class="custom-header">

		<div class="custom-header-media">
			<div id="wp-custom-header" class="wp-custom-header"><img src="https://kylanandkristen.com/wp-content/uploads/2018/06/cropped-robinson-family-web-23.jpg" width="2000" height="1200" alt="" srcset="https://kylanandkristen.com/wp-content/uploads/2018/06/cropped-robinson-family-web-23.jpg 2000w, https://kylanandkristen.com/wp-content/uploads/2018/06/cropped-robinson-family-web-23.jpg?w=150&amp;h=90 150w, https://kylanandkristen.com/wp-content/uploads/2018/06/cropped-robinson-family-web-23.jpg?w=300&amp;h=180 300w, https://kylanandkristen.com/wp-content/uploads/2018/06/cropped-robinson-family-web-23.jpg?w=768&amp;h=461 768w, https://kylanandkristen.com/wp-content/uploads/2018/06/cropped-robinson-family-web-23.jpg?w=1024&amp;h=614 1024w" sizes="100vw" /></div>		</div>

	<div class="site-branding">
	<div class="wrap">

		
		<div class="site-branding-text">
							<h1 class="site-title"><a href="https://kylanandkristen.com/" rel="home">Kylan and Kristen</a></h1>
			
							<p class="site-description">Starring Lainey, Henry, and Brody!</p>
					</div><!-- .site-branding-text -->

		
	</div><!-- .wrap -->
</div><!-- .site-branding -->

</div><!-- .custom-header -->

					<div class="navigation-top">
				<div class="wrap">
					<nav id="site-navigation" class="main-navigation" aria-label="Top Menu">
	<button class="menu-toggle" aria-controls="top-menu" aria-expanded="false">
		<svg class="icon icon-bars" aria-hidden="true" role="img"> <use href="#icon-bars" xlink:href="#icon-bars"></use> </svg><svg class="icon icon-close" aria-hidden="true" role="img"> <use href="#icon-close" xlink:href="#icon-close"></use> </svg>Menu	</button>

	<div class="menu-primary-container"><ul id="top-menu" class="menu"><li id="menu-item-6" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-6"><a href="/" aria-current="page">Home</a></li>
<li id="menu-item-7404" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7404"><a href="https://kylanandkristen.com/lainey/">Lainey</a></li>
<li id="menu-item-7405" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7405"><a href="https://kylanandkristen.com/henry/">Henry</a></li>
<li id="menu-item-7406" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-7406"><a href="https://kylanandkristen.com/brody/">Brody</a></li>
</ul></div>
			<a href="#content" class="menu-scroll-down"><svg class="icon icon-arrow-right" aria-hidden="true" role="img"> <use href="#icon-arrow-right" xlink:href="#icon-arrow-right"></use> </svg><span class="screen-reader-text">
			Scroll down to content		</span></a>
	</nav><!-- #site-navigation -->
				</div><!-- .wrap -->
			</div><!-- .navigation-top -->
		
	</header><!-- #masthead -->

	
	<div class="site-content-contain">
		<div id="content" class="site-content">

<div class="wrap">
		<header class="page-header">
		<h2 class="page-title">Posts</h2>
	</header>
	
	<div id="primary" class="content-area">
		<main id="main" class="site-main">

			
<article id="post-8098" class="post-8098 post type-post status-publish format-standard hentry category-uncategorized">
		<header class="entry-header">
		<div class="entry-meta"><span class="screen-reader-text">Posted on</span> <a href="https://kylanandkristen.com/2021/06/06/dance-recital-parks-rec-2021/" rel="bookmark"><time class="entry-date published updated" datetime="2021-06-06T06:05:17+00:00">June 6, 2021</time></a></div><!-- .entry-meta --><h3 class="entry-title"><a href="https://kylanandkristen.com/2021/06/06/dance-recital-parks-rec-2021/" rel="bookmark">Dance Recital, Parks &amp; Rec,&nbsp;2021</a></h3>	</header><!-- .entry-header -->

	
	<div class="entry-content">
		
<p>Story told by: Lainey</p>



<p>I had my second recital of the year today! This is for my parks &amp; rec dance studio. I&#8217;ve danced with most of the girls in my class since I was two years old.</p>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m3UE9j"><img src="https://live.staticflickr.com/65535/51228735034_4e7172da21_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>This was my costume for our jazz dance.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m3QGdV"><img src="https://live.staticflickr.com/65535/51227961581_e9a060c6e5_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m3M5Sg"><img src="https://live.staticflickr.com/65535/51227257307_5e9176a09a.jpg" alt=" " width="500" height="430" /></a>
</div><figcaption>My favorite girls! We had to wear masks unless we were performing, but we took them off super quick for this picture.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Lainey Dance Recital, Parks &amp; Rec, 2021, Dance 1" width="525" height="295" src="https://www.youtube.com/embed/bW_fpt5Jrvk?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>I was most nervous for this dance, but I was really happy with how I did! I start as the third from the right, and then move all over the place.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m3RPj8"><img src="https://live.staticflickr.com/65535/51228180543_4786066918_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>My tap costume!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m3M69D"><img src="https://live.staticflickr.com/65535/51227258257_7eb9a0c685_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m3WdJZ"><img src="https://live.staticflickr.com/65535/51229039805_a39efa93d5_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Me and one of my best buddies, Ivy.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m3M5ZA"><img src="https://live.staticflickr.com/65535/51227257732_794306ff1e_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m3WdBu"><img src="https://live.staticflickr.com/65535/51229039370_717d228191.jpg" alt=" " width="500" height="430" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Lainey Dance Recital, Parks &amp; Rec, 2021, Dance 2" width="525" height="295" src="https://www.youtube.com/embed/uM4_YLUIeAo?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>Tap is still my favorite style of dance (although jazz is gaining ground). I&#8217;m in the front row, on the far left in this dance!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m3UE7W"><img src="https://live.staticflickr.com/65535/51228734954_f4f6b1ff2e_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Mommy and Daddy got me a flower/candy bouquet for my great performance.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m3M69P"><img src="https://live.staticflickr.com/65535/51227258267_d0c08d7484_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>The boys got a bit wiggly, but they sat through the entire two-hour recital. They rocked it!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m3UE9u"><img src="https://live.staticflickr.com/65535/51228735044_a8e8704d1a_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>My favorite part&#8230;the giant trophy! This is my eighth year of dance with Parks &amp; Rec.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m3UEdc"><img src="https://live.staticflickr.com/65535/51228735259_9c071a8f86_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>And finally, a picture with my wonderful teacher, Ms. Brooke. I have made the very difficult decision to switch over to my other dance studio full time in order to compete in more dances on their competition team (which is something Ms. Brooke doesn&#8217;t offer). Tonight tears were shed by both myself and Ms. Brooke. I am going to miss her SO much. I am very grateful to how much she helped to foster my love of dance. I love her, and I can&#8217;t wait to make her proud with more dancing!</figcaption></figure>
	</div><!-- .entry-content -->

	
</article><!-- #post-8098 -->

<article id="post-8079" class="post-8079 post type-post status-publish format-standard hentry category-uncategorized">
		<header class="entry-header">
		<div class="entry-meta"><span class="screen-reader-text">Posted on</span> <a href="https://kylanandkristen.com/2021/05/23/sanctuary-dance-recital-2021/" rel="bookmark"><time class="entry-date published updated" datetime="2021-05-23T03:00:46+00:00">May 23, 2021</time></a></div><!-- .entry-meta --><h3 class="entry-title"><a href="https://kylanandkristen.com/2021/05/23/sanctuary-dance-recital-2021/" rel="bookmark">Sanctuary Dance Recital,&nbsp;2021</a></h3>	</header><!-- .entry-header -->

	
	<div class="entry-content">
		
<p>Story told by: Lainey</p>



<p>I started at a new dance studio in the fall of 2020 because I wanted to join their competition dance team. The studio I&#8217;ve been with since I was two years old doesn&#8217;t do a competition team, so for this year, I did dances at both studios. My first recital of the year was with my new dance studio, Sanctuary.</p>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m154pG"><img src="https://live.staticflickr.com/65535/51196619818_d6081ece02_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>I got to be Mary Poppins for my competition team! We traveled to a few competitions this spring with this dance. We took second place and third place at two of the competitions! We performed our competition dance first!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Sanctuary Dance Recital, 2021, Dance 1" width="525" height="295" src="https://www.youtube.com/embed/U7i2ounwBaI?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>The recital was broken up into five different mini-recitals, so more people could attend due to COVID restrictions. This dance was performed at the 10:00 recital.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m144R8"><img src="https://live.staticflickr.com/65535/51196426181_3cd823f801_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>The theme of the recital was &#8220;Dancing Through the Decades,&#8221; so the rest of my songs were from various decades.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m183Be"><img src="https://live.staticflickr.com/65535/51197202459_0dafdedf95_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>This is my second costume for my Tap 2 performance for the 11:30 recital.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kZZhVZ"><img src="https://live.staticflickr.com/65535/51195689747_24c51df04f_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m19waV"><img src="https://live.staticflickr.com/65535/51197490295_af6fa5b192_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>I had lots of friends in different performances. Analiese had the cutest dress!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m19nB7"><img src="https://live.staticflickr.com/65535/51197461480_ffd2b0bb32_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Mom and Liz helped each other through learning competition season for the first time together! They were SO glad they had one another.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m159X5"><img src="https://live.staticflickr.com/65535/51196638458_82f9020a75_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m151Lf"><img src="https://live.staticflickr.com/65535/51196610918_6d689f2ed3_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Sarah saved the day for the moms with a coffee run!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Sanctuary Dance Recital, 2021, Dance 2" width="525" height="295" src="https://www.youtube.com/embed/6I_gZNl9Sz4?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>I am on the far left for most of this dance.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m17Xhb"><img src="https://live.staticflickr.com/65535/51197184534_3ebf9045a7_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>My third (and favorite) costume for the 12:30 recital. This is also my favorite dance!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m19qeM"><img src="https://live.staticflickr.com/65535/51197470335_221ccb7b82_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Leilani is in my class at school, so it was fun to see her!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m183Zo"><img src="https://live.staticflickr.com/65535/51197203744_334bed5d73_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>I ate a quick lunch before my third performance!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Sanctuary Dance Recital, 2021, Dance 3" width="525" height="295" src="https://www.youtube.com/embed/TEfocBqWsO8?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>I am third from the left in most of this dance.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m17PT8"><img src="https://live.staticflickr.com/65535/51197159649_6c2c8b21dc.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>Daddy and the boys came to watch my third dance. It was such a long day of dances, so I picked my one favorite for them to attend.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m19hEd"><img src="https://live.staticflickr.com/65535/51197444840_e830c9fab8_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>My fourth costume for the 2:00 recital!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kZZqvd"><img src="https://live.staticflickr.com/65535/51195715222_a85377de9e_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m14Zgr"><img src="https://live.staticflickr.com/65535/51196605883_b208c947fa_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>I was all done posing.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m183NM"><img src="https://live.staticflickr.com/65535/51197203129_3fe4068168_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m17T4B"><img src="https://live.staticflickr.com/65535/51197170349_65e218117f_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Sarah is such a good support person!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m152J7"><img src="https://live.staticflickr.com/65535/51196614158_d9b2a4bda3_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Jagger was my duet partner for this last dance!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Sanctuary Dance Recital, 2021, Dance 4" width="525" height="295" src="https://www.youtube.com/embed/Iu2EiQPBD2M?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2m19w9h"><img src="https://live.staticflickr.com/65535/51197490200_ce75e22081.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>After I went home to change, we went out for ice cream to celebrate a successful recital! I love, love, love dancing! I can&#8217;t wait for my next recital in a couple of weeks with my other dance studio!</figcaption></figure>
	</div><!-- .entry-content -->

	
</article><!-- #post-8079 -->

<article id="post-8053" class="post-8053 post type-post status-publish format-standard hentry category-uncategorized">
		<header class="entry-header">
		<div class="entry-meta"><span class="screen-reader-text">Posted on</span> <a href="https://kylanandkristen.com/2021/05/08/im-six-3/" rel="bookmark"><time class="entry-date published updated" datetime="2021-05-08T22:59:51+00:00">May 8, 2021</time></a></div><!-- .entry-meta --><h3 class="entry-title"><a href="https://kylanandkristen.com/2021/05/08/im-six-3/" rel="bookmark">I&#8217;m Six!</a></h3>	</header><!-- .entry-header -->

	
	<div class="entry-content">
		
<p>Story told by: Brody</p>



<p>I turned six yesterday! I am the last in my family to have a birthday, so I&#8217;ve been counting down the days since the first family birthday in February. It is FINALLY my turn!!</p>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXoQxp"><img src="https://live.staticflickr.com/65535/51166334173_551c2feaab_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>I was up by 5:15 a.m. because I was too excited. The first thing I asked Daddy was, &#8220;Can you lift me up to see if I&#8217;m heavier today?&#8221;</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXjd99"><img src="https://live.staticflickr.com/65535/51165431272_675544087d_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Then I asked Mommy if she would like to pick me up. She gave an emphatic, &#8220;Nope!&#8221; I am getting pretttty big.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXjdCW"><img src="https://live.staticflickr.com/65535/51165432942_a92b695a4b_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Lainey made a note for me, and left it with a new shirt that I got to wear for the day.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXnCwf"><img src="https://live.staticflickr.com/65535/51166098626_8fb55109fe_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Before I left for school, Daddy took me out to get a doughnut, and Mommy made bacon for me. My favorite things!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXoPF4"><img src="https://live.staticflickr.com/65535/51166331253_1bc502c40e_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Chloe and I have the same birthday! She turned 14. She surprised me with an early-morning present drop off. Thank you, Chloe!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXnCjS"><img src="https://live.staticflickr.com/65535/51166097966_342eb20fc3_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>I&#8217;m not too heavy for her to lift either.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXtfD9"><img src="https://live.staticflickr.com/65535/51167195690_945515f16a_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>The early-morning picture of the tired moms!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXtg1w"><img src="https://live.staticflickr.com/65535/51167196930_940f8d797c_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Henry made a nice card for me.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXtggG"><img src="https://live.staticflickr.com/65535/51167197810_4008a425dc_z.jpg" alt=" " width="521" height="640" /></a>
</div><figcaption>And after this picture in my new shirt, I walked out the door for school!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXrC22"><img src="https://live.staticflickr.com/65535/51166877379_afee63f548.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>Daddy took the day off to help celebrate my special day. While I was at school, Mommy and Daddy got the deck ready for my birthday party. (The wind was blowing quite a bit and it was raining off and on&#8230;but they were determined!)</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXtgkQ"><img src="https://live.staticflickr.com/65535/51167198050_b749b96c90_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>I&#8217;m loving Mario right now, so I requested this for my theme!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXrCk3"><img src="https://live.staticflickr.com/65535/51166878424_60a6d62098_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXtfFt"><img src="https://live.staticflickr.com/65535/51167195825_51a2c30fdd.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>Ella and Nathanael, my two best kindergarten buddies, walked home from school with me for my party. We got to first pick out a Mario-themed mask.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXtfs2"><img src="https://live.staticflickr.com/65535/51167195045_77440eff48_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>The Bowser mask was my favorite!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXtftE"><img src="https://live.staticflickr.com/65535/51167195140_4092a75729_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Bananas, string cheese, and Kool-Aid for snack. It was my first time trying Kool-Aid, and I later declared this as one of my favorite parts of my party!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXjdDT"><img src="https://live.staticflickr.com/65535/51165432997_1cc331de94.jpg" alt=" " width="450" height="500" /></a>
</div><figcaption>Mommy and Daddy also got in on the fun.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXjcWW"><img src="https://live.staticflickr.com/65535/51165430622_657ed04ea8_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Our first activity was Mario Bingo!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Brody 6th Birthday, 1" width="525" height="295" src="https://www.youtube.com/embed/lLJNlcj6lvs?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>Then we were blindfolded and had to pin the nose on Mario, as well as the &#8220;M&#8221; on his hat!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXnCki"><img src="https://live.staticflickr.com/65535/51166097991_4764e30382_z.jpg" alt=" " width="360" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXrCvZ"><img src="https://live.staticflickr.com/65535/51166879059_4612933de6_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXoPV2"><img src="https://live.staticflickr.com/65535/51166332063_ac47988281_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXoPH8"><img src="https://live.staticflickr.com/65535/51166331373_e99e47d3a3_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXoQ8b"><img src="https://live.staticflickr.com/65535/51166332768_d600094ff4_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Brody 6th Birthday, 2" width="525" height="295" src="https://www.youtube.com/embed/8Q9HpVouoKM?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>Next we had an egg hunt to find all of Yoshi&#8217;s eggs! (Lainey and Henry had a bit of a collision, but everyone was fine.)</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXtfFy"><img src="https://live.staticflickr.com/65535/51167195830_c58c7cdffd.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>We successfully found all of Yoshi&#8217;s eggs!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXnCcn"><img src="https://live.staticflickr.com/65535/51166097531_440a6a7b00_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Time for presents!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXtgaV"><img src="https://live.staticflickr.com/65535/51167197475_0c075f2f00_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXjdvw"><img src="https://live.staticflickr.com/65535/51165432512_0570d343bd_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXtgmw"><img src="https://live.staticflickr.com/65535/51167198090_2124a8aa6e_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXnCBf"><img src="https://live.staticflickr.com/65535/51166098916_bde1194d13_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Cupcakes were next!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXnCf3"><img src="https://live.staticflickr.com/65535/51166097686_43f3aeb892_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Making my wish.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXnC5P"><img src="https://live.staticflickr.com/65535/51166097151_79a2bbf307_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXnCsT"><img src="https://live.staticflickr.com/65535/51166098431_c890579a4b_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Ella made sure that her mask and her cupcake matched.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXrCDe"><img src="https://live.staticflickr.com/65535/51166879479_535c4b5c9b_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>After cupcakes, we had about 45 minutes to run around and play. We wrapped up just in time for it to start pouring rain. I love these two buddies and I&#8217;m so happy they could come over!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXtgk4"><img src="https://live.staticflickr.com/65535/51167198005_1e2c6fbf35_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>I originally wanted giant pancakes from Zoe&#8217;s for dinner, but when we called, they were closing early. So I happily opted for my next dinner choice&#8230;McDonald&#8217;s!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXoQ3M"><img src="https://live.staticflickr.com/65535/51166332513_2814b696f2_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Next up&#8230;family presents!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXoQgx"><img src="https://live.staticflickr.com/65535/51166333253_d3fae44af5_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Lainey and Brody bought this book for me. I love it!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Brody 6th Birthday, 3" width="525" height="295" src="https://www.youtube.com/embed/iIN_Uv7CfwA?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>Grandma and Grandpa got me a new Nintendo Switch game!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXjcWa"><img src="https://live.staticflickr.com/65535/51165430577_7a3d1bc82a_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Mommy and Daddy also got me a new game. I only get to play Switch on the weekends, so you know what I&#8217;ll be doing this weekend!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Brody 6th Birthday, 4" width="525" height="295" src="https://www.youtube.com/embed/Zg8YMbYoMsg?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>NaNa and BaBa got me a cool science kit. I can&#8217;t wait to grow some crystals!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Brody 6th Birthday, 5" width="525" height="295" src="https://www.youtube.com/embed/fjBIfQsjQ6A?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>Gma and Gpa are going to give me a night in a hotel as my present. I LOVE HOTELS!!!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXrCrf"><img src="https://live.staticflickr.com/65535/51166878784_ed19f1a608_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>I requested that Mommy make lava cake for my birthday dessert. It&#8217;s just so warm and gooey and yummy!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXrC6F"><img src="https://live.staticflickr.com/65535/51166877649_06d31da4f4_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kXnCxc"><img src="https://live.staticflickr.com/65535/51166098681_bc7e31da89_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Brody 6th Birthday, 6" width="525" height="295" src="https://www.youtube.com/embed/JQKPgylimzA?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>After we played one of my new Switch games as a family, I requested that we end the night by reading a couple of chapters of my new book. It was such a great birthday! I can&#8217;t wait for my next one!</figcaption></figure>
	</div><!-- .entry-content -->

	
</article><!-- #post-8053 -->

<article id="post-8016" class="post-8016 post type-post status-publish format-standard hentry category-uncategorized">
		<header class="entry-header">
		<div class="entry-meta"><span class="screen-reader-text">Posted on</span> <a href="https://kylanandkristen.com/2021/04/08/spring-break-and-easter-2021/" rel="bookmark"><time class="entry-date published updated" datetime="2021-04-08T17:42:58+00:00">April 8, 2021</time></a></div><!-- .entry-meta --><h3 class="entry-title"><a href="https://kylanandkristen.com/2021/04/08/spring-break-and-easter-2021/" rel="bookmark">Spring Break and Easter,&nbsp;2021</a></h3>	</header><!-- .entry-header -->

	
	<div class="entry-content">
		
<p>Story told by: Lainey</p>



<p>We have this week off for Spring Break, so we took the first few days of the week to head to the Oregon Coast for a fun getaway!</p>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRNQH4"><img src="https://live.staticflickr.com/65535/51103118445_390232eaf6.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>It&#8217;s almost an eight-hour drive, so we got on the road by 6:30 a.m. on Saturday and drove all day. Daddy&#8217;s watch kept giving him notices that he was in an area where the decibels were too loud and that exposure to this volume for a long period of time could cause damage. I guess we were laughing too much and playing the music too loud on the way!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHavx"><img src="https://live.staticflickr.com/65535/51102011021_3c4e09998f.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>We arrived in Lincoln City, Oregon at 3 p.m., which was an hour earlier than our condo opened, so we went straight to the beach!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHEJP"><img src="https://live.staticflickr.com/65535/51102109347_1e0ea6a878_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Lincoln City, Spring Break 2" width="525" height="295" src="https://www.youtube.com/embed/6J4O5Elwkug?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHEv2"><img src="https://live.staticflickr.com/65535/51102108547_ffb1f69956_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHPDD"><img src="https://live.staticflickr.com/65535/51102139323_13a2021113.jpg" alt=" " width="500" height="375" /></a>
</div></figure>



<p>After checking into our condo, we came back down to keep playing!</p>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHygA"><img src="https://live.staticflickr.com/65535/51102087584_4eb7193155_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Henry was on a mission to find as many seashells as he could!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHa8U"><img src="https://live.staticflickr.com/65535/51102009766_4404ae3502.jpg" alt=" " width="500" height="375" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Lincoln City, Spring Break 3" width="525" height="295" src="https://www.youtube.com/embed/1C6QVLFURhg?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>Brody and I were on a mission to go fully clothed into the ocean. Success!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHKvd"><img src="https://live.staticflickr.com/65535/51102125378_b15dfb52ac_z.jpg" alt=" " width="525" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHCV8"><img src="https://live.staticflickr.com/65535/51102103217_c3f26bfba2.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>The next morning was Easter! We were very relieved to find out that the Easter Bunny still found us in our vacation spot!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHs8P"><img src="https://live.staticflickr.com/65535/51102066949_48807d9314.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>I bought these yummy treats for the boys and made them a Perler bead bunny.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHEqh"><img src="https://live.staticflickr.com/65535/51102108272_67eb0bd2ce_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>We all got started on the candy right away!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHxKt"><img src="https://live.staticflickr.com/65535/51102085837_5dae83ca06_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>The view off of our balcony!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHatd"><img src="https://live.staticflickr.com/65535/51102010886_cd67e3e5e8_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>We tried to go to a local church, but it was a bit too crowded with no masks for us, so we left after a few minutes and went sightseeing instead.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Lincoln City, Spring Break 4" width="525" height="295" src="https://www.youtube.com/embed/rDnNmUCjWAA?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>We loved watching the waves crash over these rocks.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRNQ4i"><img src="https://live.staticflickr.com/65535/51103116255_1fdb4eaa9e_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>This is my &#8220;I&#8217;m a vacation girl&#8221; pose.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRH8rY"><img src="https://live.staticflickr.com/65535/51102004086_27060c2dee_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Next up was our egg hunt on the beach! It was incredibly windy down by the water, though, so that made hiding plastic eggs a bit challenging.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRNQzZ"><img src="https://live.staticflickr.com/65535/51103118035_8bdd2b0986.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>We went exploring while Mommy hid the eggs.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Lincoln City, Spring Break 5" width="525" height="295" src="https://www.youtube.com/embed/0k6zCQ3G2w8?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>Once the egg hunt started, Daddy stood down wind to catch the eggs. Mommy got quite a kick out of it!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRNPNJ"><img src="https://live.staticflickr.com/65535/51103115410_f9c9953dfe_z.jpg" alt=" " width="360" height="640" /></a>
</div><figcaption>Brody&#8217;s favorite part of the ocean was when the tide was low and he could hop on all of these rocks.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRJAeL"><img src="https://live.staticflickr.com/65535/51102289318_4df92b3d8f_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>We all enjoyed reading books on our balcony. I got this one in my Easter basket.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHyF8"><img src="https://live.staticflickr.com/65535/51102088949_94e32538a5_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>We ended Easter night in our hot tub. Not too shabby!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHKwM"><img src="https://live.staticflickr.com/65535/51102125469_c06115f374_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>On our last full day of vacation, we drove down to Newport to see the sights. Our first stop was a must on the coast&#8230;.salt water taffy!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRNNPE"><img src="https://live.staticflickr.com/65535/51103112100_ebac9a72ac.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>And then another necessary stop&#8230;Mo&#8217;s for clam chowder!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRJheN"><img src="https://live.staticflickr.com/65535/51102228768_ae75684452_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRNR1P"><img src="https://live.staticflickr.com/65535/51103119475_67229263a2_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>I wouldn&#8217;t even touch the chowder, but the boys (and Mommy) all dug right in. They loved it!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRH8qk"><img src="https://live.staticflickr.com/65535/51102003991_0cbc18f602_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Next we wandered down to see all of the sea lions.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Lincoln City, Spring Break 7" width="525" height="295" src="https://www.youtube.com/embed/vfh9AaSHpwU?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHDAS"><img src="https://live.staticflickr.com/65535/51102105522_d4c4673650_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHxKd"><img src="https://live.staticflickr.com/65535/51102085822_5442d75d57.jpg" alt=" " width="500" height="375" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHaiU"><img src="https://live.staticflickr.com/65535/51102010346_dc0c429b6f_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRNQ7j"><img src="https://live.staticflickr.com/65535/51103116430_54253a3f8f.jpg" alt=" " width="500" height="375" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRJobN"><img src="https://live.staticflickr.com/65535/51102248778_1b79d80435_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHjR6"><img src="https://live.staticflickr.com/65535/51102042431_92ecf9e6f5_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>I lost a tooth in my salt water taffy! I started biting on something hard, and was very surprise (and quite panicked) because I didn&#8217;t even know it was loose. Because I was pretty worried, Mommy took some pictures and emailed them to our dentist just to help me feel better that all looked good, and wasn&#8217;t a broken tooth and sure enough, it&#8217;s normal! I was much happier after hear that.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRNHD9"><img src="https://live.staticflickr.com/65535/51103094670_dc81ff1c87.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>We stopped at Rogue Brewery to eat on their outdoor patio and to enjoy the GLORIOUS sunshine!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRPSzG"><img src="https://live.staticflickr.com/65535/51103319858_b765898456_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>We had root beer floats and shared a couple of appetizers for our lunch!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHySv"><img src="https://live.staticflickr.com/65535/51102089609_cf0e116ff3_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRNDEo"><img src="https://live.staticflickr.com/65535/51103081286_e8f06e0a69_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHrKE"><img src="https://live.staticflickr.com/65535/51102065664_d48e25afe9.jpg" alt=" " width="500" height="500" /></a>
</div><figcaption>Mommy spilled her entire drink before even taking a sip. So the waiter was awesome and brought her replacement drink in a mug with a handle so she could hold on extra tight.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHyYx"><img src="https://live.staticflickr.com/65535/51102089959_f77b54c816_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Grandma and Grandpa gave us a puzzle for Easter, so we finished putting that together!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRJpEu"><img src="https://live.staticflickr.com/65535/51102253748_965be1041b_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>And then back to the beach for our last evening! It was only 50 degrees, but I was bound and determined to be in my bathing suit and go in the ocean!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHyM5"><img src="https://live.staticflickr.com/65535/51102089294_e1c7348595_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Lincoln City, Spring Break 8" width="525" height="295" src="https://www.youtube.com/embed/e_wSLiQ24k8?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRNNSv"><img src="https://live.staticflickr.com/65535/51103112265_dcda4a2855_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Henry&#8217;s goal was to build a sand castle fort.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRNQCV"><img src="https://live.staticflickr.com/65535/51103118205_0eee4457e4.jpg" alt=" " width="500" height="375" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRNKbD"><img src="https://live.staticflickr.com/65535/51103099861_17de19f74b_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRNQaa"><img src="https://live.staticflickr.com/65535/51103116595_7272613192.jpg" alt=" " width="500" height="375" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHEyP"><img src="https://live.staticflickr.com/65535/51102108767_05f67f8d94.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>And Brody was back on these rocks. He didn&#8217;t care that they were covered in seaweed&#8230;he could have been here all day!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Lincoln City, Spring Break 6" width="525" height="295" src="https://www.youtube.com/embed/XYsSkz-hxAM?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHadP"><img src="https://live.staticflickr.com/65535/51102010051_719a221eb5.jpg" alt=" " width="479" height="500" /></a>
</div><figcaption>On our last morning, Henry cozied right up to me to watch some cartoons.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRH8q5"><img src="https://live.staticflickr.com/65535/51102003976_eae6a0d055_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Then before heading home, we drove an hour north to go to the Tillamook Cheese and Ice Cream Factory!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRPT28"><img src="https://live.staticflickr.com/65535/51103321333_22b60607c5.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>It was really neat to see how the cheese was made!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHRAd"><img src="https://live.staticflickr.com/65535/51102145852_5c220476cd.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>Mommy wanted cheese curds, and we wanted ice cream. So yummy!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kRHs3D"><img src="https://live.staticflickr.com/65535/51102066649_47ab854ab0.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>After this we started the long drive home with lots of stops for food, Target to make some returns (since we don&#8217;t have a Target where we live), breaks to stretch our legs, and most importantly&#8230;coffee for Mommy and Daddy!</figcaption></figure>



<p>We couldn&#8217;t have had a better Spring Break! It was the perfect weather, great family time, and the relaxation we all needed!</p>
	</div><!-- .entry-content -->

	
</article><!-- #post-8016 -->

<article id="post-7996" class="post-7996 post type-post status-publish format-standard hentry category-uncategorized">
		<header class="entry-header">
		<div class="entry-meta"><span class="screen-reader-text">Posted on</span> <a href="https://kylanandkristen.com/2021/03/09/im-nine/" rel="bookmark"><time class="entry-date published updated" datetime="2021-03-09T05:11:06+00:00">March 9, 2021</time></a></div><!-- .entry-meta --><h3 class="entry-title"><a href="https://kylanandkristen.com/2021/03/09/im-nine/" rel="bookmark">I&#8217;m Nine!</a></h3>	</header><!-- .entry-header -->

	
	<div class="entry-content">
		
<p>Story told by: Lainey</p>



<p>It&#8217;s my birthday! One of the first things I said when I woke up today was, &#8220;It&#8217;s my last year in the single digits!&#8221;</p>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJemUV"><img src="https://live.staticflickr.com/65535/51017370773_a3ee7c8fc9_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>I woke up at 6 a.m. Here&#8217;s my first picture as a nine-year-old!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJehRj"><img src="https://live.staticflickr.com/65535/51017357108_44dc0329b1_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Since I was up so early, Mommy wasn&#8217;t done with her workout yet, so I joined her to finish the last half together!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJiw92"><img src="https://live.staticflickr.com/65535/51018182257_730f821d02_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>And just as we finished, Brody came up to wish me a happy birthday.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJehXm"><img src="https://live.staticflickr.com/65535/51017357458_1ecb12fe33_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJi1Km"><img src="https://live.staticflickr.com/65535/51018083386_6b5b1a08a5_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>My requested breakfast from my favorite chef was bacon and eggs.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJegxN"><img src="https://live.staticflickr.com/65535/51017352728_f430a78a07_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>My favorite meal!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJiA5D"><img src="https://live.staticflickr.com/65535/51018195517_fe512537fe_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>When we were in the store last week, I saw this &#8220;Birthday Girl&#8221; badge that I just had to have.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJiucS"><img src="https://live.staticflickr.com/65535/51018175752_ac11019078_z.jpg" alt=" " width="512" height="640" /></a>
</div><figcaption>Mommy asked me to strike a birthday pose. This is my &#8220;birthday hat&#8221; pose.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Lainey 9th Birthday, Walking to school" width="525" height="295" src="https://www.youtube.com/embed/4M0w0f54FIs?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>Then it was time for school! I have a new appreciation for actually being able to go to school, so I was thrilled to get to celebrate with my class.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJehZF"><img src="https://live.staticflickr.com/65535/51017357593_d61f483f3f.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>Mommy had friends and teachers sending me pictures of my school day.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJegiV"><img src="https://live.staticflickr.com/65535/51017351923_9ef6060f32.jpg" alt=" " width="500" height="478" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJehYP"><img src="https://live.staticflickr.com/65535/51017357543_3b47fe2e31_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>When I got home, my best friend, Ava got to come over for a bit. We first checked out the new American Girl magazine.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJiuoy"><img src="https://live.staticflickr.com/65535/51018176372_e8f7033f5e.jpg" alt=" " width="500" height="484" /></a>
</div><figcaption>Allison also got to come over to have a cookie picnic together. Allison turns 18 today. She was in Mommy&#8217;s third grade class when I was born, and got to meet me in the hospital on our first birthday we shared together. It&#8217;s crazy that I&#8217;m now the age that Allison was when she first met me!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJiuBp"><img src="https://live.staticflickr.com/65535/51018177117_9c8a023a18_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Then it was time to open presents!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJiuvH"><img src="https://live.staticflickr.com/65535/51018176787_1d640f7505_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>A fun game from Grandma and Grandpa!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJiuBu"><img src="https://live.staticflickr.com/65535/51018177122_f94c333719_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Two different latch hook kits!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Lainey 9th birthday, Little House cookbook" width="525" height="295" src="https://www.youtube.com/embed/lhumeGmI1Cw?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>A Little House on the Prairie cookbook from the Spotanskis!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJi39i"><img src="https://live.staticflickr.com/65535/51018088081_9279a9fdeb_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>My new favorite sweatshirt!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJehUW"><img src="https://live.staticflickr.com/65535/51017357318_1fae39e747_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJegvd"><img src="https://live.staticflickr.com/65535/51017352578_d256c484ed_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Na Na made me a beautiful quilt! She&#8217;s the best seamstress I know!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Lainey 9th Birthday, LOL Camper" width="525" height="295" src="https://www.youtube.com/embed/1Wi6p6B2hzs?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>A fun LOL doll camper from Gma and Gpa!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJi1BA"><img src="https://live.staticflickr.com/65535/51018082936_a550606c44_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJiuyD"><img src="https://live.staticflickr.com/65535/51018176957_9da69f5d84_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Then I had awhile to play with my new toys!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJemTC"><img src="https://live.staticflickr.com/65535/51017370698_b705ce780c_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Tacos and cheesy chips were my requested dinner!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJi3bT"><img src="https://live.staticflickr.com/65535/51018088231_abe9cfee54_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJi1JK"><img src="https://live.staticflickr.com/65535/51018083351_fc09d61c99_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Mommy made me a lemon cake while I was at school today. It was absolutely delicious!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kJi1Fd"><img src="https://live.staticflickr.com/65535/51018083146_2f38c78845_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>After cake, it was time for dance class! Over the weekend Mommy and I made salted chocolate chunk cookies to share as treats with my dance friends.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Lainey’s 9th Birthday, Dance Surprise I" width="525" height="295" src="https://www.youtube.com/embed/WCL6cuw1Fdc?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>My dance class surprised me when I walked in!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Lainey’s 9th Birthday, Dance Surprise 2" width="525" height="295" src="https://www.youtube.com/embed/LKioXUY3WaM?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>And then the big girls came to sing to me!</figcaption></figure>



<p>It was such a fun day! I felt special, and got to spend it with lots of friends and family that I love!</p>



<p></p>
	</div><!-- .entry-content -->

	
</article><!-- #post-7996 -->

<article id="post-7979" class="post-7979 post type-post status-publish format-standard hentry category-uncategorized">
		<header class="entry-header">
		<div class="entry-meta"><span class="screen-reader-text">Posted on</span> <a href="https://kylanandkristen.com/2021/02/19/im-seven/" rel="bookmark"><time class="entry-date published updated" datetime="2021-02-19T04:49:01+00:00">February 19, 2021</time></a></div><!-- .entry-meta --><h3 class="entry-title"><a href="https://kylanandkristen.com/2021/02/19/im-seven/" rel="bookmark">I&#8217;m Seven!</a></h3>	</header><!-- .entry-header -->

	
	<div class="entry-content">
		
<p>Story told by: Henry</p>



<p>I&#8217;m seven years old today!</p>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Henry’s 7th Birthday, Morning" width="525" height="295" src="https://www.youtube.com/embed/yXE2jYNVKAY?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>I always snuggle with my mom first thing every morning. It&#8217;s about the only time I am willing to snuggle.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kD1u7q"><img src="https://live.staticflickr.com/65535/50958276052_3d1521b33a_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>My first picture as a seven-year-old!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kCZWjG"><img src="https://live.staticflickr.com/65535/50958169116_d55d87ec2d_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>I wanted to pick out fresh doughnuts for my birthday breakfast, so before I started online school for the day, Daddy and I got to run out to the store!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kD1Vdn"><img src="https://live.staticflickr.com/65535/50958360497_4a3c10192b_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>I specifically wanted to be able to put a doughnut hole in the middle of my doughnut so it looked like a UFO.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Henry’s 7th Birthday, first present" width="525" height="295" src="https://www.youtube.com/embed/aeUzKj8O2IQ?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>Then since I was having a couple of friends over for lunch and video games, Mommy and Daddy let me open one present early. Thanks, Grandma and Grandpa!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kCWmNX"><img src="https://live.staticflickr.com/65535/50957471043_c5c394b892_z.jpg" alt=" " width="524" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kD1tXs"><img src="https://live.staticflickr.com/65535/50958275532_ce260a2a88.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>After I hurried through my schoolwork, Des and Elijah came over to join us for lunch!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kD1tRL"><img src="https://live.staticflickr.com/65535/50958275202_23c74b52df_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>They were so sweet to bring a couple of great gifts!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kD1tNV"><img src="https://live.staticflickr.com/65535/50958275037_14192419db_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kCWmTB"><img src="https://live.staticflickr.com/65535/50957471313_d997450dca.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>Then we got to play my new video game. It was such a fun afternoon!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kCWmKv"><img src="https://live.staticflickr.com/65535/50957470843_b159e01d25_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Once Daddy was done with work, I requested Taco Bell for dinner. I love their burritos!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Henry’s 7th Birthday, Sibling Present" width="525" height="295" src="https://www.youtube.com/embed/usAHWkqnY9Q?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>Then it was time to open presents! Lainey and Brody bought this present for me. It is a Splatoon character that I&#8217;ve been wanting!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kCZWmf"><img src="https://live.staticflickr.com/65535/50958169206_3ac43f7824_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kCWmUP"><img src="https://live.staticflickr.com/65535/50957471383_be881c3a1c_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>I really loved this &#8220;make your own&#8221; comic book that Mommy and Daddy gave me.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Henry’s 7th Birthday, Hoverboard" width="525" height="295" src="https://www.youtube.com/embed/RnnVLC4-1Jw?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>A hoverboard from Gma and Gpa!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Henry’s 7th Birthday, Books" width="525" height="295" src="https://www.youtube.com/embed/9wgK8br1ZFE?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>I got lots of books! This set is from the Campbells!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kCZWpG"><img src="https://live.staticflickr.com/65535/50958169406_418434007e_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kCWmSj"><img src="https://live.staticflickr.com/65535/50957471238_9a62333bea.jpg" alt=" " width="427" height="500" /></a>
</div><figcaption>I found a s&#8217;mores cake online last week, and I just knew that&#8217;s what I wanted for my birthday. It almost did Mommy in as it was the most complicated cake she&#8217;s ever made, but my reaction when I saw it was pure joy!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kCZWvJ"><img src="https://live.staticflickr.com/65535/50958169756_e6dffcd121_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Henry’s 7th Birthday, Birthday Song" width="525" height="295" src="https://www.youtube.com/embed/DscsBR0KYRs?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kCZWvi"><img src="https://live.staticflickr.com/65535/50958169731_2505b063e8_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>This cake was INCREDIBLE!! Seriously the best cake we&#8217;ve ever had! </figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kCZWhh"><img src="https://live.staticflickr.com/65535/50958168976_aede72ff7e_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kCWmN6"><img src="https://live.staticflickr.com/65535/50957470993_63190e3b54.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>We ended the night with Daddy reading &#8220;Chronicle of Narnia&#8221; to us while I worked on one of my new LEGO sets.</figcaption></figure>



<p>It was such a great day, and I&#8217;m so excited to be seven!</p>
	</div><!-- .entry-content -->

	
</article><!-- #post-7979 -->

<article id="post-7961" class="post-7961 post type-post status-publish format-standard hentry category-uncategorized">
		<header class="entry-header">
		<div class="entry-meta"><span class="screen-reader-text">Posted on</span> <a href="https://kylanandkristen.com/2021/02/15/valentines-day-2021/" rel="bookmark"><time class="entry-date published updated" datetime="2021-02-15T18:59:34+00:00">February 15, 2021</time></a></div><!-- .entry-meta --><h3 class="entry-title"><a href="https://kylanandkristen.com/2021/02/15/valentines-day-2021/" rel="bookmark">Valentine&#8217;s Day, 2021</a></h3>	</header><!-- .entry-header -->

	
	<div class="entry-content">
		
<p>Story told by: Brody</p>



<p>We love, love, love Valentine&#8217;s Day! </p>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kBNgAu"><img src="https://live.staticflickr.com/65535/50944576108_5c4d7e77e4_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>We started the day with heart-shaped muffins (that I helped Mommy bake yesterday) and heart-shaped bacon!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kBRQRK"><img src="https://live.staticflickr.com/65535/50945273341_bf4d0e1c42_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>I wanted to look &#8220;very handsome&#8221; for Valentine&#8217;s Day. But since we haven&#8217;t been to church since last March and only watch online, I have no dress pants that fit me. So I put gel in my hair, found a dress shirt that fits, and tucked it into my nicest sweatpants.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kBNgZ5"><img src="https://live.staticflickr.com/65535/50944577418_9167c1d433_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kBNgXX"><img src="https://live.staticflickr.com/65535/50944577353_accc3cabb9_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Mommy made a cake that had a bit of a hard time coming out of the pan.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kBSnmP"><img src="https://live.staticflickr.com/65535/50945375947_a4bd0013ff_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>But lots of frosting and sprinkles fixed it right up!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kBNgC3"><img src="https://live.staticflickr.com/65535/50944576198_8d2e6913be_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>While Mommy was baking, Daddy came home with two sweet gifts for her. He&#8217;s a good guy!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Valentine’s Day Dancing, 2021" width="525" height="295" src="https://www.youtube.com/embed/4aogP9b4_5E?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>Mommy caught Daddy and Lainey dancing. We had &#8220;love&#8221; music going all day!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kBSsmJ"><img src="https://live.staticflickr.com/65535/50945392762_bd6a8f13ff_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Yesterday Henry made a kind card for Mommy.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kBRVtA"><img src="https://live.staticflickr.com/65535/50945288876_779c985329_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kBSnFM"><img src="https://live.staticflickr.com/65535/50945377047_281ba205e9.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>And finally our favorite part of the day&#8230;our special dinner!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kBSnnW"><img src="https://live.staticflickr.com/65535/50945376012_b1191215f3.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>Heart-shaped meatloaf and pink mashed potatoes!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kBNmyv"><img src="https://live.staticflickr.com/65535/50944592813_4c223296ab_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kBSnE4"><img src="https://live.staticflickr.com/65535/50945376947_f4cb09e6b5_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Valentine’s Day Dinner, 2021" width="525" height="295" src="https://www.youtube.com/embed/qHswvLAKlXI?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>We all got kicked out of the dining room until it was time for the big reveal!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kBSnmZ"><img src="https://live.staticflickr.com/65535/50945375957_b4b4609e6b.jpg" alt=" " width="416" height="500" /></a>
</div><figcaption>We decided that since we never dress up anymore, it would be fun to have a fancy dinner!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kBNgYU"><img src="https://live.staticflickr.com/65535/50944577408_280b9a3653_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>We surprised Mommy and Daddy with cards we made the day before. Mommy and Daddy opened their cards while we ate dinner.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kBRQPR"><img src="https://live.staticflickr.com/65535/50945273231_1c3686eb42_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kBSnwi"><img src="https://live.staticflickr.com/65535/50945376497_2217014c00.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>Lainey wrote the SWEETEST cards to each of us!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kBSnmd"><img src="https://live.staticflickr.com/65535/50945375912_c00b46b07d.jpg" alt=" " width="500" height="375" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kBRQvE"><img src="https://live.staticflickr.com/65535/50945272176_2fd97c554e.jpg" alt=" " width="500" height="375" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kBSnm3"><img src="https://live.staticflickr.com/65535/50945375902_0f384f445b.jpg" alt=" " width="500" height="375" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kBNmxt"><img src="https://live.staticflickr.com/65535/50944592753_bf68f18f87_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Lainey also made Mommy a necklace with a wine cork from her favorite winery. Mommy got a kick out of this!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Valentine’s Day Presents, 2021" width="525" height="295" src="https://www.youtube.com/embed/8MVUlReWShA?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>Time for our presents! </figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kBRQN3"><img src="https://live.staticflickr.com/65535/50945273126_6251c89e39_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>I got a book I&#8217;d been BEGGING for, so while everyone else continued to open presents, I paused everything to start reading.</figcaption></figure>



<p>And because Mommy forgot to take any pictures after dinner, I&#8217;ll let you know that we had cake for dessert, and then snuggled up to watch a movie and eat our Valentine&#8217;s Day treats. It was a wonderful day!</p>
	</div><!-- .entry-content -->

	
</article><!-- #post-7961 -->

<article id="post-7926" class="post-7926 post type-post status-publish format-standard hentry category-uncategorized">
		<header class="entry-header">
		<div class="entry-meta"><span class="screen-reader-text">Posted on</span> <a href="https://kylanandkristen.com/2020/12/30/christmas-2020/" rel="bookmark"><time class="entry-date published updated" datetime="2020-12-30T00:45:39+00:00">December 30, 2020</time></a></div><!-- .entry-meta --><h3 class="entry-title"><a href="https://kylanandkristen.com/2020/12/30/christmas-2020/" rel="bookmark">Christmas, 2020</a></h3>	</header><!-- .entry-header -->

	
	<div class="entry-content">
		
<p>Story told by: Lainey</p>



<p>We were supposed to fly to visit our family in Illinois for Christmas this year, but due to COVID, we decided to be extra safe and stay home!</p>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmGphn"><img src="https://live.staticflickr.com/65535/50773683857_11e14bc17e_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>We were excited to wake up on Christmas Eve to find that Santa had brought us an early present! (He normally brings us a present while we&#8217;re at church on Christmas Eve, but since we are doing church from home, we were curious to see how he&#8217;d do it!)</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmGnsL"><img src="https://live.staticflickr.com/65535/50773677732_3feb43ea96_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>We love our new jammies and book he brought us!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmBXSy"><img src="https://live.staticflickr.com/65535/50772817928_a356c50ea3_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Elf also surprised us with treats!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmFLTu"><img src="https://live.staticflickr.com/65535/50773561426_c495467d0e_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Macarons!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmBXzz"><img src="https://live.staticflickr.com/65535/50772816943_cdebe7e2c2.jpg" alt=" " width="500" height="420" /></a>
</div><figcaption>We had baked sugar cookies the day before, so we spent time on Christmas Eve decorating them.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmBXXo"><img src="https://live.staticflickr.com/65535/50772818208_fbbc0cece6.jpg" alt=" " width="500" height="375" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmGnwZ"><img src="https://live.staticflickr.com/65535/50773677977_78d1704cc7.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>The weather was beautiful, so we went out for a long walk!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmBVVx"><img src="https://live.staticflickr.com/65535/50772811373_f400e452ea_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Since we were watching church from home, we took the most casual Christmas Eve pictures ever!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmFLNu"><img src="https://live.staticflickr.com/65535/50773561136_b8d0533fa6_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmGpoE"><img src="https://live.staticflickr.com/65535/50773684222_6e2e93e4a9_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmBVYy"><img src="https://live.staticflickr.com/65535/50772811548_9bc7330b16.jpg" alt=" " width="447" height="500" /></a>
</div><figcaption>These are what 90% of our pictures looked like.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmFLDB"><img src="https://live.staticflickr.com/65535/50773560621_9435f78aba.jpg" alt=" " width="447" height="500" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmFLn4"><img src="https://live.staticflickr.com/65535/50773559661_cc2f190cf2.jpg" alt=" " width="496" height="500" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmGpmv"><img src="https://live.staticflickr.com/65535/50773684097_495378c4c7_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Our church sent out nativities for us to open during the service.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmFNHg"><img src="https://live.staticflickr.com/65535/50773567561_caa25b834a.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>The one bonus about church from home was that as soon as it was done, we turned on a Christmas show and ate peppermint ice cream from Ferdinand&#8217;s. Yum!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmBWdr"><img src="https://live.staticflickr.com/65535/50772812353_4abb522f73.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>We read our new book with Daddy.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmGn3x"><img src="https://live.staticflickr.com/65535/50773676327_88dd131100_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>And each picked out our favorite cookie to leave out for Santa.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmFSmU"><img src="https://live.staticflickr.com/65535/50773579836_9755a5d8cd_z.jpg" alt=" " width="513" height="640" /></a>
</div><figcaption>I also wrote a note for Santa. And then we went to bed where both Henry and I couldn&#8217;t fall asleep until well past 11 p.m.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmFyQw"><img src="https://live.staticflickr.com/65535/50773520886_4fdf2222a6_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>The next morning Mommy and Daddy got up to have a cup of coffee and enjoy a quiet moment before the fun began.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmG4ko"><img src="https://live.staticflickr.com/65535/50773616752_96d3b65a66_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>We were ready to go by 5:58 a.m.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Christmas Morning, 2020" width="525" height="295" src="https://www.youtube.com/embed/FDsTmdq5iUE?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>Our big present from Santa is always unwrapped. We were thrilled to find that I got my number one request of a giant box of LOL Dolls, and the boys got their requests of new Nintendo Switches.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmBNdt"><img src="https://live.staticflickr.com/65535/50772785443_431c10bcea_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Daddy got right to work as tech support.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmG3Z3"><img src="https://live.staticflickr.com/65535/50773615572_aa02187c24_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>And Mommy watched me unbox a few dolls.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmG7ZC"><img src="https://live.staticflickr.com/65535/50773629062_115696800f_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmG3di"><img src="https://live.staticflickr.com/65535/50773612977_07bce51c6a.jpg" alt=" " width="500" height="375" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Stocking Opening, Christmas 2020" width="525" height="295" src="https://www.youtube.com/embed/s4Vr9sjMUYA?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>Next we moved onto stockings!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmBC5H"><img src="https://live.staticflickr.com/65535/50772751353_ce8d98b478_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmG5iF"><img src="https://live.staticflickr.com/65535/50773620017_53da3748ee_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmFwbd"><img src="https://live.staticflickr.com/65535/50773511936_5497dd4074_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmG5vQ"><img src="https://live.staticflickr.com/65535/50773620722_9a624a105a_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Brody, Mario LEGO, Christmas 2020" width="525" height="295" src="https://www.youtube.com/embed/laRrWvwtn88?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>And then the chaos and fun really started!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmBCmu"><img src="https://live.staticflickr.com/65535/50772752268_7bc8d649e3_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmFt2x"><img src="https://live.staticflickr.com/65535/50773501341_27eb7878d6_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Henry, LEGO, Christmas 2020" width="525" height="295" src="https://www.youtube.com/embed/2GEiXWOedyU?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Lainey, Kitchen Set, Christmas 2020" width="525" height="295" src="https://www.youtube.com/embed/JylWettHn6o?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmG3RC"><img src="https://live.staticflickr.com/65535/50773615142_f581aea543_z.jpg" alt=" " width="360" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmG4Em"><img src="https://live.staticflickr.com/65535/50773617852_8cec9e2644.jpg" alt=" " width="500" height="500" /></a>
</div><figcaption>Mommy&#8217;s favorite moments of the morning were when we opened presents we gave to one another. We used our allowance to carefully choose and purchase what we thought each other would like the most. We had the most genuine and heartfelt thank you&#8217;s for one another.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmG7v1"><img src="https://live.staticflickr.com/65535/50773627402_22a38fcb66_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>The boys got a LEGO set for me to add to our LEGO city.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmFyS5"><img src="https://live.staticflickr.com/65535/50773520976_6b20b998f3.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>I bought a Pokemon set for Henry.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Kylan, Cougar Sweatshirt, Christmas 2020" width="525" height="295" src="https://www.youtube.com/embed/efIASFfbrIc?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>We all bought a Cougar sweatshirt for Daddy.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmFwx5"><img src="https://live.staticflickr.com/65535/50773513146_ffe97648fb_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmBFor"><img src="https://live.staticflickr.com/65535/50772762473_fdfa20bd59.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>And we bought a new Cougar mug for Mommy.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmBBU7"><img src="https://live.staticflickr.com/65535/50772750738_4ab572341b_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmG3Wn"><img src="https://live.staticflickr.com/65535/50773615417_ffd3dc66b3_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>My teacher also gave me a new book to open on Christmas!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmFu3R"><img src="https://live.staticflickr.com/65535/50773504781_35ce4d717a_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Brody got a new apron for all of his baking with Mommy!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmBBSD"><img src="https://live.staticflickr.com/65535/50772750653_6da77228b0_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Grandma and Grandpa got Mommy a new Magnolia vase from when they visited the Magnolia store in Texas!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmG7VK"><img src="https://live.staticflickr.com/65535/50773628837_34069bb4c4_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Daddy got an assortment of beer!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmG4r5"><img src="https://live.staticflickr.com/65535/50773617082_f4406a4b5d_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>And then tested it in his new chair. He&#8217;s ready for summer!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Lainey, Magic 8 Ball, Christmas 2020" width="525" height="295" src="https://www.youtube.com/embed/GmngbEakPXU?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>I also got a Magic 8 ball. I really want to meet dolphins, so I asked my Magic 8 ball. Twice. I didn&#8217;t like its answer.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmG7vG"><img src="https://live.staticflickr.com/65535/50773627442_737339ae91_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>The afternoon was spent playing with our toys! The boys did video games.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmBDeM"><img src="https://live.staticflickr.com/65535/50772755243_13c5db4b18_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Mommy and I put together one of my new LEGO sets.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmFCC1"><img src="https://live.staticflickr.com/65535/50773533616_597122bc69.jpg" alt=" " width="434" height="500" /></a>
</div><figcaption>And Daddy was knee-deep in recycling and trash, which he clearly loves sooooo much!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmFudF"><img src="https://live.staticflickr.com/65535/50773505351_e83ef39f85.jpg" alt=" " width="414" height="500" /></a>
</div><figcaption>Since it was just us this year, we decided to do whatever we want. We love Costco lasagna, so that&#8217;s what we had for dinner. Mommy LOVED not cooking all day. She said that she may keep this tradition!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmFwez"><img src="https://live.staticflickr.com/65535/50773512131_281bd7f0d0.jpg" alt=" " width="415" height="500" /></a>
</div><figcaption>But she did make a delicious peppermint cheesecake. Yum!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmG5gS"><img src="https://live.staticflickr.com/65535/50773619912_a0b20e137a.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>Right as the lasagna came out of the oven we realized it had finally snowed enough to go sledding (the snow didn&#8217;t really start until the sun was going down)! So we left the lasagna sitting on the counter, put on our snow stuff, and ran out the door for flashlight sledding!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmFvVJ"><img src="https://live.staticflickr.com/65535/50773511096_dd0df65942.jpg" alt=" " width="500" height="375" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmBFaA"><img src="https://live.staticflickr.com/65535/50772761728_8235653d52_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Christmas 2020, Sledding 1" width="525" height="295" src="https://www.youtube.com/embed/XjctVCHgIVk?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Christmas 2020, Sledding 2" width="525" height="295" src="https://www.youtube.com/embed/rgIvB_9UrDQ?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Christmas 2020, Sledding 3" width="525" height="295" src="https://www.youtube.com/embed/S88t8CDtiRk?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Christmas 2020, Sledding 4" width="525" height="295" src="https://www.youtube.com/embed/IuGY94ZGW3o?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kmG3L2"><img src="https://live.staticflickr.com/65535/50773614817_bbe18101c1.jpg" alt=" " width="500" height="375" /></a>
</div></figure>



<p>It was such a fun way to end our day! We came home to eat our easy Christmas dinner, played some video games, and then went to bed. It was much different than normal, but also such a fun day! Merry Christmas everyone!</p>
	</div><!-- .entry-content -->

	
</article><!-- #post-7926 -->

<article id="post-7924" class="post-7924 post type-post status-publish format-standard hentry category-uncategorized">
		<header class="entry-header">
		<div class="entry-meta"><span class="screen-reader-text">Posted on</span> <a href="https://kylanandkristen.com/2020/12/12/christmas-recital-2020/" rel="bookmark"><time class="entry-date published updated" datetime="2020-12-12T20:48:28+00:00">December 12, 2020</time></a></div><!-- .entry-meta --><h3 class="entry-title"><a href="https://kylanandkristen.com/2020/12/12/christmas-recital-2020/" rel="bookmark">Christmas Recital, 2020</a></h3>	</header><!-- .entry-header -->

	
	<div class="entry-content">
		
<p>We invite you to grab some popcorn and hot chocolate and enjoy our ten-minute Christmas recital!</p>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Christmas Recital 2020" width="525" height="295" src="https://www.youtube.com/embed/HFw95nnw-Rc?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div></figure>
	</div><!-- .entry-content -->

	
</article><!-- #post-7924 -->

<article id="post-7905" class="post-7905 post type-post status-publish format-standard hentry category-uncategorized">
		<header class="entry-header">
		<div class="entry-meta"><span class="screen-reader-text">Posted on</span> <a href="https://kylanandkristen.com/2020/11/27/thanksgiving-2020/" rel="bookmark"><time class="entry-date published updated" datetime="2020-11-27T19:48:39+00:00">November 27, 2020</time></a></div><!-- .entry-meta --><h3 class="entry-title"><a href="https://kylanandkristen.com/2020/11/27/thanksgiving-2020/" rel="bookmark">Thanksgiving, 2020</a></h3>	</header><!-- .entry-header -->

	
	<div class="entry-content">
		
<p>Story told by: Brody</p>



<p>We had a wonderful Thanksgiving! We have made the choice to spend the Thanksgiving and Christmas holidays with just us this year due to COVID, and while we miss family, we&#8217;re determined to make the best of it and make fun memories!</p>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb6E8i"><img src="https://live.staticflickr.com/65535/50653739911_1b3f5f28fd_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>We had the whole week off from school, and it has been a MUCH-NEEDED break from distance learning! Henry and I helped Mommy make the pumpkin cake this week.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb7Q9E"><img src="https://live.staticflickr.com/65535/50653968742_4af5c25117.jpg" alt=" " width="464" height="500" /></a>
</div><figcaption>When Mommy asked us who would like to whisk, I replied, &#8220;Me. It would be my honor to whisp for you my lady.&#8221; Mommy laughed quite a bit about this one.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Salted Caramel Prep" width="525" height="295" src="https://www.youtube.com/embed/zvIQynN_ZNM?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>Later that night Mommy and Lainey made a homemade salted caramel sauce to add to the cream cheese frosting for the cake. Yum!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="“Oh, Christmas Tree”" width="525" height="394" src="https://www.youtube.com/embed/a_wWA9QeMC0?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div><figcaption>We&#8217;ve already been listening to lots of Christmas music. One evening we called Mommy and Daddy in to Lainey&#8217;s room to show them this act. Lainey said to them, &#8220;You&#8217;re welcome to record this.&#8221;</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb3Ae4"><img src="https://live.staticflickr.com/65535/50653141453_bec1b09d08.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>On Thanksgiving morning we woke up to watch the parade on TV!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb2Wfy"><img src="https://live.staticflickr.com/65535/50653013708_12dcda6eb9_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Daddy helped with peeling potatoes! (Mommy was cooking an easy turkey breast this year, and Lainey and Mommy had already made the stuffing and the cranberry sauce the day before, so there was minimal prep needed this day.)</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb7NSw"><img src="https://live.staticflickr.com/65535/50653964442_139f3b57b8.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>While the turkey cooked in the oven and the mashed potatoes cooked in the crockpot, we played Farkle.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb78G7"><img src="https://live.staticflickr.com/65535/50653832642_65911443ee_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Every time I got a good roll, I had to do a victory dance.</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb6E1V"><img src="https://live.staticflickr.com/65535/50653739541_761891e0d8_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>The girls!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb6H6s"><img src="https://live.staticflickr.com/65535/50653749896_13e4bbaa37_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Time to start setting the table. We had some yummy drinks!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb78ka"><img src="https://live.staticflickr.com/65535/50653831427_4daff45f2f_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb6EDd"><img src="https://live.staticflickr.com/65535/50653741646_cbb8d4ccb8_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Since we couldn&#8217;t all be together, Na Na mailed us a festive centerpiece that she made. We love it!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb78jU"><img src="https://live.staticflickr.com/65535/50653831412_eb539f612e.jpg" alt=" " width="500" height="375" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb7Qck"><img src="https://live.staticflickr.com/65535/50653968897_6dec22efe8.jpg" alt=" " width="500" height="375" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb6DHv"><img src="https://live.staticflickr.com/65535/50653738531_9a1f9a2b59.jpg" alt=" " width="500" height="391" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb7kqg"><img src="https://live.staticflickr.com/65535/50653872091_c610cbe21c_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>The food is ready!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb6H67"><img src="https://live.staticflickr.com/65535/50653749876_0016ebd2e6_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb6EpA"><img src="https://live.staticflickr.com/65535/50653740856_3205a6cc5c.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>It was an absolutely delicious dinner! We all had different favorite things. Henry liked the green bean casserole, Lainey liked the rolls, I liked the &#8220;fuzzy&#8221; (a.k.a. carbonated) drink, Daddy liked the cranberry sauce, and Mommy liked the stuffing! We all took turns going around the table saying what we were thankful for this year. We are especially grateful to all be safe, healthy, and happy in our wonderful home!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb6Ehb"><img src="https://live.staticflickr.com/65535/50653740426_f98a8dcf50_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb78qv"><img src="https://live.staticflickr.com/65535/50653831737_d209af369c_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb78t1"><img src="https://live.staticflickr.com/65535/50653831882_d7ac62506b_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>After dinner we went outside to play while Mommy and Daddy cleaned up. Before we came back inside, we found this waiting on the front porch! (Lainey knows the secret about Elf this year. I have no idea what secret they might be talking about.)</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<div class="embed-youtube"><iframe title="Elf Delivery" width="525" height="295" src="https://www.youtube.com/embed/0WftH-INxlw?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe></div>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb7QdN"><img src="https://live.staticflickr.com/65535/50653968982_60ea407c0b_z.jpg" alt=" " width="480" height="640" /></a>
</div></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb6H8g"><img src="https://live.staticflickr.com/65535/50653750001_d2b64a8771.jpg" alt=" " width="500" height="375" /></a>
</div><figcaption>We love our new PJs!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb78PM"><img src="https://live.staticflickr.com/65535/50653833087_cd426cc62e_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Since we can&#8217;t visit Santa this year, we took turns telling Elf what we would like. (Although we did also mail letters to the North Pole this year. We&#8217;re covering all of our bases.)</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb78mN"><img src="https://live.staticflickr.com/65535/50653831522_6a25b263b7_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>Thankfully we had an early dinner so we could fit in two desserts that night. We started with the pumpkin cake!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb2Wch"><img src="https://live.staticflickr.com/65535/50653013518_b04ab69d99_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>And later had pumpkin ice cream!</figcaption></figure>



<figure class="wp-block-embed is-type-rich is-provider-flickr wp-block-embed-flickr"><div class="wp-block-embed__wrapper">
<a href="https://flic.kr/p/2kb3yVn"><img src="https://live.staticflickr.com/65535/50653137063_d4f792b065_z.jpg" alt=" " width="480" height="640" /></a>
</div><figcaption>And ended the night with watching &#8220;A Christmas Story!&#8221; </figcaption></figure>



<p>We had a fun, relaxing day with lots of laughs and good family time together! Happy Thanksgiving everyone!</p>
	</div><!-- .entry-content -->

	
</article><!-- #post-7905 -->

	<nav class="navigation pagination" aria-label="Posts pagination">
		<h2 class="screen-reader-text">Posts pagination</h2>
		<div class="nav-links"><span aria-current="page" class="page-numbers current"><span class="meta-nav screen-reader-text">Page </span>1</span>
<a class="page-numbers" href="https://kylanandkristen.com/page/2/"><span class="meta-nav screen-reader-text">Page </span>2</a>
<span class="page-numbers dots">&hellip;</span>
<a class="page-numbers" href="https://kylanandkristen.com/page/87/"><span class="meta-nav screen-reader-text">Page </span>87</a>
<a class="next page-numbers" href="https://kylanandkristen.com/page/2/"><span class="screen-reader-text">Next page</span><svg class="icon icon-arrow-right" aria-hidden="true" role="img"> <use href="#icon-arrow-right" xlink:href="#icon-arrow-right"></use> </svg></a></div>
	</nav>
		</main><!-- #main -->
	</div><!-- #primary -->
	
<aside id="secondary" class="widget-area" aria-label="Blog Sidebar">
	<section id="search-3" class="widget widget_search">

<form role="search" method="get" class="search-form" action="https://kylanandkristen.com/">
	<label for="search-form-1">
		<span class="screen-reader-text">
			Search for:		</span>
	</label>
	<input type="search" id="search-form-1" class="search-field" placeholder="Search &hellip;" value="" name="s" />
	<button type="submit" class="search-submit"><svg class="icon icon-search" aria-hidden="true" role="img"> <use href="#icon-search" xlink:href="#icon-search"></use> </svg><span class="screen-reader-text">
		Search	</span></button>
</form>
</section></aside><!-- #secondary -->
</div><!-- .wrap -->


		</div><!-- #content -->

		<footer id="colophon" class="site-footer">
			<div class="wrap">
				
<div class="site-info">
		<a href="https://wordpress.com/?ref=footer_custom_svg" title="Create a website or blog at WordPress.com" rel="nofollow"><svg style="fill: currentColor; position: relative; top: 1px;" width="14px" height="15px" viewBox="0 0 14 15" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-labelledby="title" role="img">
				<desc id="title">Create a website or blog at WordPress.com</desc>
				<path d="M12.5225848,4.97949746 C13.0138466,5.87586309 13.2934037,6.90452431 13.2934037,7.99874074 C13.2934037,10.3205803 12.0351007,12.3476807 10.1640538,13.4385638 L12.0862862,7.88081544 C12.4453251,6.98296834 12.5648813,6.26504621 12.5648813,5.62667922 C12.5648813,5.39497674 12.549622,5.17994084 12.5225848,4.97949746 L12.5225848,4.97949746 Z M7.86730089,5.04801561 C8.24619178,5.02808979 8.58760099,4.98823815 8.58760099,4.98823815 C8.9267139,4.94809022 8.88671369,4.44972248 8.54745263,4.46957423 C8.54745263,4.46957423 7.52803983,4.54957381 6.86996227,4.54957381 C6.25158863,4.54957381 5.21247202,4.46957423 5.21247202,4.46957423 C4.87306282,4.44972248 4.83328483,4.96816418 5.17254589,4.98823815 C5.17254589,4.98823815 5.49358462,5.02808979 5.83269753,5.04801561 L6.81314716,7.73459399 L5.43565839,11.8651647 L3.14394256,5.04801561 C3.52312975,5.02808979 3.86416859,4.98823815 3.86416859,4.98823815 C4.20305928,4.94809022 4.16305906,4.44972248 3.82394616,4.46957423 C3.82394616,4.46957423 2.80475558,4.54957381 2.14660395,4.54957381 C2.02852925,4.54957381 1.88934333,4.54668493 1.74156477,4.54194422 C2.86690406,2.83350881 4.80113651,1.70529256 6.99996296,1.70529256 C8.638342,1.70529256 10.1302017,2.33173369 11.2498373,3.35765419 C11.222726,3.35602457 11.1962815,3.35261718 11.1683554,3.35261718 C10.5501299,3.35261718 10.1114609,3.89113285 10.1114609,4.46957423 C10.1114609,4.98823815 10.4107217,5.42705065 10.7296864,5.94564049 C10.969021,6.36482346 11.248578,6.90326506 11.248578,7.68133501 C11.248578,8.21992476 11.0413918,8.84503256 10.7696866,9.71584277 L10.1417574,11.8132391 L7.86730089,5.04801561 Z M6.99996296,14.2927074 C6.38218192,14.2927074 5.78595654,14.2021153 5.22195356,14.0362644 L7.11048207,8.54925635 L9.04486267,13.8491542 C9.05760348,13.8802652 9.07323319,13.9089317 9.08989995,13.9358945 C8.43574834,14.1661896 7.73285573,14.2927074 6.99996296,14.2927074 L6.99996296,14.2927074 Z M0.706448182,7.99874074 C0.706448182,7.08630113 0.902152921,6.22015756 1.25141403,5.43749503 L4.25357806,13.6627848 C2.15393732,12.6427902 0.706448182,10.4898387 0.706448182,7.99874074 L0.706448182,7.99874074 Z M6.99996296,0.999 C3.14016476,0.999 0,4.13905746 0,7.99874074 C0,11.8585722 3.14016476,14.999 6.99996296,14.999 C10.8596871,14.999 14,11.8585722 14,7.99874074 C14,4.13905746 10.8596871,0.999 6.99996296,0.999 L6.99996296,0.999 Z" id="wordpress-logo-simplified-cmyk" stroke="none" fill=“currentColor” fill-rule="evenodd"></path>
			</svg></a>
</div><!-- .site-info -->
			</div><!-- .wrap -->
		</footer><!-- #colophon -->
	</div><!-- .site-content-contain -->
</div><!-- #page -->
		<script type="text/javascript">
		var infiniteScroll = {"settings":{"id":"main","ajaxurl":"https:\/\/kylanandkristen.com\/?infinity=scrolling","type":"scroll","wrapper":true,"wrapper_class":"infinite-wrap","footer":"content","click_handle":"1","text":"Older posts","totop":"Scroll back to top","currentday":"27.11.20","order":"DESC","scripts":[],"styles":[],"google_analytics":false,"offset":1,"history":{"host":"kylanandkristen.com","path":"\/page\/%d\/","use_trailing_slashes":true,"parameters":""},"query_args":{"error":"","m":"","p":0,"post_parent":"","subpost":"","subpost_id":"","attachment":"","attachment_id":0,"name":"","pagename":"","page_id":0,"second":"","minute":"","hour":"","day":0,"monthnum":0,"year":0,"w":0,"category_name":"","tag":"","cat":"","tag_id":"","author":"","author_name":"","feed":"","tb":"","paged":0,"meta_key":"","meta_value":"","preview":"","s":"","sentence":"","title":"","fields":"","menu_order":"","embed":"","category__in":[],"category__not_in":[],"category__and":[],"post__in":[],"post__not_in":[],"post_name__in":[],"tag__in":[],"tag__not_in":[],"tag__and":[],"tag_slug__in":[],"tag_slug__and":[],"post_parent__in":[],"post_parent__not_in":[],"author__in":[],"author__not_in":[],"search_columns":[],"lazy_load_term_meta":false,"posts_per_page":10,"ignore_sticky_posts":false,"suppress_filters":false,"cache_results":true,"update_post_term_cache":true,"update_menu_item_cache":false,"update_post_meta_cache":true,"post_type":"","nopaging":false,"comments_per_page":"50","no_found_rows":false,"order":"DESC"},"query_before":"2025-02-23 15:02:12","last_post_date":"2020-11-27 19:48:39","body_class":"infinite-scroll neverending","loading_text":"Loading new page","stats":"blog=145008588&v=wpcom&tz=0&user_id=0&subd=kylanandkristen&x_pagetype=infinite"}};
		</script>
		<!--  -->
<script src="//0.gravatar.com/js/hovercards/hovercards.min.js?ver=2025087d8bf6c02970a26c6b0c26b0fcfc89796aa30f84307cffd8fd28d2bcca53dd7a" id="grofiles-cards-js"></script>
<script id="wpgroho-js-extra">
var WPGroHo = {"my_hash":""};
</script>
<script crossorigin='anonymous' type='text/javascript'  src='https://s2.wp.com/wp-content/mu-plugins/gravatar-hovercards/wpgroho.js?m=1610363240i'></script>

	<script>
		// Initialize and attach hovercards to all gravatars
		( function() {
			function init() {
				if ( typeof Gravatar === 'undefined' ) {
					return;
				}

				if ( typeof Gravatar.init !== 'function' ) {
					return;
				}

				Gravatar.profile_cb = function ( hash, id ) {
					WPGroHo.syncProfileData( hash, id );
				};

				Gravatar.my_hash = WPGroHo.my_hash;
				Gravatar.init(
					'body',
					'#wp-admin-bar-my-account',
					{
						i18n: {
							'Edit your profile →': 'Edit your profile →',
							'View profile →': 'View profile →',
							'Contact': 'Contact',
							'Send money': 'Send money',
							'Sorry, we are unable to load this Gravatar profile.': 'Sorry, we are unable to load this Gravatar profile.',
							'Profile not found.': 'Profile not found.',
							'Too Many Requests.': 'Too Many Requests.',
							'Internal Server Error.': 'Internal Server Error.',
						},
					}
				);
			}

			if ( document.readyState !== 'loading' ) {
				init();
			} else {
				document.addEventListener( 'DOMContentLoaded', init );
			}
		} )();
	</script>

		<div style="display:none">
	</div>
		<div id="infinite-footer">
			<div class="container">
				<div class="blog-info">
					<a id="infinity-blog-title" href="https://kylanandkristen.com/" rel="home">
						Kylan and Kristen					</a>
				</div>
				<div class="blog-credits">
					<a href="https://wordpress.com/?ref=footer_custom_svg" title="Create a website or blog at WordPress.com" rel="nofollow"><svg style="fill: currentColor; position: relative; top: 1px;" width="14px" height="15px" viewBox="0 0 14 15" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-labelledby="title" role="img">
				<desc id="title">Create a website or blog at WordPress.com</desc>
				<path d="M12.5225848,4.97949746 C13.0138466,5.87586309 13.2934037,6.90452431 13.2934037,7.99874074 C13.2934037,10.3205803 12.0351007,12.3476807 10.1640538,13.4385638 L12.0862862,7.88081544 C12.4453251,6.98296834 12.5648813,6.26504621 12.5648813,5.62667922 C12.5648813,5.39497674 12.549622,5.17994084 12.5225848,4.97949746 L12.5225848,4.97949746 Z M7.86730089,5.04801561 C8.24619178,5.02808979 8.58760099,4.98823815 8.58760099,4.98823815 C8.9267139,4.94809022 8.88671369,4.44972248 8.54745263,4.46957423 C8.54745263,4.46957423 7.52803983,4.54957381 6.86996227,4.54957381 C6.25158863,4.54957381 5.21247202,4.46957423 5.21247202,4.46957423 C4.87306282,4.44972248 4.83328483,4.96816418 5.17254589,4.98823815 C5.17254589,4.98823815 5.49358462,5.02808979 5.83269753,5.04801561 L6.81314716,7.73459399 L5.43565839,11.8651647 L3.14394256,5.04801561 C3.52312975,5.02808979 3.86416859,4.98823815 3.86416859,4.98823815 C4.20305928,4.94809022 4.16305906,4.44972248 3.82394616,4.46957423 C3.82394616,4.46957423 2.80475558,4.54957381 2.14660395,4.54957381 C2.02852925,4.54957381 1.88934333,4.54668493 1.74156477,4.54194422 C2.86690406,2.83350881 4.80113651,1.70529256 6.99996296,1.70529256 C8.638342,1.70529256 10.1302017,2.33173369 11.2498373,3.35765419 C11.222726,3.35602457 11.1962815,3.35261718 11.1683554,3.35261718 C10.5501299,3.35261718 10.1114609,3.89113285 10.1114609,4.46957423 C10.1114609,4.98823815 10.4107217,5.42705065 10.7296864,5.94564049 C10.969021,6.36482346 11.248578,6.90326506 11.248578,7.68133501 C11.248578,8.21992476 11.0413918,8.84503256 10.7696866,9.71584277 L10.1417574,11.8132391 L7.86730089,5.04801561 Z M6.99996296,14.2927074 C6.38218192,14.2927074 5.78595654,14.2021153 5.22195356,14.0362644 L7.11048207,8.54925635 L9.04486267,13.8491542 C9.05760348,13.8802652 9.07323319,13.9089317 9.08989995,13.9358945 C8.43574834,14.1661896 7.73285573,14.2927074 6.99996296,14.2927074 L6.99996296,14.2927074 Z M0.706448182,7.99874074 C0.706448182,7.08630113 0.902152921,6.22015756 1.25141403,5.43749503 L4.25357806,13.6627848 C2.15393732,12.6427902 0.706448182,10.4898387 0.706448182,7.99874074 L0.706448182,7.99874074 Z M6.99996296,0.999 C3.14016476,0.999 0,4.13905746 0,7.99874074 C0,11.8585722 3.14016476,14.999 6.99996296,14.999 C10.8596871,14.999 14,11.8585722 14,7.99874074 C14,4.13905746 10.8596871,0.999 6.99996296,0.999 L6.99996296,0.999 Z" id="wordpress-logo-simplified-cmyk" stroke="none" fill=“currentColor” fill-rule="evenodd"></path>
			</svg></a> 				</div>
			</div>
		</div><!-- #infinite-footer -->
				<div id="actionbar" dir="ltr" style="display: none;"
			class="actnbr-pub-twentyseventeen actnbr-has-follow actnbr-has-actions">
		<ul>
								<li class="actnbr-btn actnbr-hidden">
								<a class="actnbr-action actnbr-actn-follow " href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z"  fill-rule="evenodd"></path></svg>
			<span>Subscribe</span>
		</a>
		<a class="actnbr-action actnbr-actn-following  no-display" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg>
			<span>Subscribed</span>
		</a>
							<div class="actnbr-popover tip tip-top-left actnbr-notice" id="follow-bubble">
							<div class="tip-arrow"></div>
							<div class="tip-inner actnbr-follow-bubble">
															<ul>
											<li class="actnbr-sitename">
			<a href="https://kylanandkristen.com">
				<img loading='lazy' alt='' src='https://kylanandkristen.com/wp-content/uploads/2018/04/cropped-30992539012_07a854ba91_o.jpg?w=50' srcset='https://kylanandkristen.com/wp-content/uploads/2018/04/cropped-30992539012_07a854ba91_o.jpg?w=50 1x, https://kylanandkristen.com/wp-content/uploads/2018/04/cropped-30992539012_07a854ba91_o.jpg?w=75 1.5x, https://kylanandkristen.com/wp-content/uploads/2018/04/cropped-30992539012_07a854ba91_o.jpg?w=100 2x, https://kylanandkristen.com/wp-content/uploads/2018/04/cropped-30992539012_07a854ba91_o.jpg?w=150 3x, https://kylanandkristen.com/wp-content/uploads/2018/04/cropped-30992539012_07a854ba91_o.jpg?w=200 4x' class='avatar avatar-50' height='50' width='50' />				Kylan and Kristen			</a>
		</li>
										<div class="actnbr-message no-display"></div>
									<form method="post" action="https://subscribe.wordpress.com" accept-charset="utf-8" style="display: none;">
																				<div>
										<input type="email" name="email" placeholder="Enter your email address" class="actnbr-email-field" aria-label="Enter your email address" />
										</div>
										<input type="hidden" name="action" value="subscribe" />
										<input type="hidden" name="blog_id" value="145008588" />
										<input type="hidden" name="source" value="https://kylanandkristen.com/" />
										<input type="hidden" name="sub-type" value="actionbar-follow" />
										<input type="hidden" id="_wpnonce" name="_wpnonce" value="0f88587da6" />										<div class="actnbr-button-wrap">
											<button type="submit" value="Sign me up">
												Sign me up											</button>
										</div>
									</form>
									<li class="actnbr-login-nudge">
										<div>
											Already have a WordPress.com account? <a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Fkylanandkristen.com%252F2021%252F06%252F06%252Fdance-recital-parks-rec-2021%252F">Log in now.</a>										</div>
									</li>
								</ul>
															</div>
						</div>
					</li>
							<li class="actnbr-ellipsis actnbr-hidden">
				<svg class="gridicon gridicons-ellipsis" height="24" width="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><g><path d="M7 12c0 1.104-.896 2-2 2s-2-.896-2-2 .896-2 2-2 2 .896 2 2zm12-2c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2zm-7 0c-1.104 0-2 .896-2 2s.896 2 2 2 2-.896 2-2-.896-2-2-2z"/></g></svg>				<div class="actnbr-popover tip tip-top-left actnbr-more">
					<div class="tip-arrow"></div>
					<div class="tip-inner">
						<ul>
								<li class="actnbr-sitename">
			<a href="https://kylanandkristen.com">
				<img loading='lazy' alt='' src='https://kylanandkristen.com/wp-content/uploads/2018/04/cropped-30992539012_07a854ba91_o.jpg?w=50' srcset='https://kylanandkristen.com/wp-content/uploads/2018/04/cropped-30992539012_07a854ba91_o.jpg?w=50 1x, https://kylanandkristen.com/wp-content/uploads/2018/04/cropped-30992539012_07a854ba91_o.jpg?w=75 1.5x, https://kylanandkristen.com/wp-content/uploads/2018/04/cropped-30992539012_07a854ba91_o.jpg?w=100 2x, https://kylanandkristen.com/wp-content/uploads/2018/04/cropped-30992539012_07a854ba91_o.jpg?w=150 3x, https://kylanandkristen.com/wp-content/uploads/2018/04/cropped-30992539012_07a854ba91_o.jpg?w=200 4x' class='avatar avatar-50' height='50' width='50' />				Kylan and Kristen			</a>
		</li>
								<li class="actnbr-folded-follow">
										<a class="actnbr-action actnbr-actn-follow " href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path clip-rule="evenodd" d="m4 4.5h12v6.5h1.5v-6.5-1.5h-1.5-12-1.5v1.5 10.5c0 1.1046.89543 2 2 2h7v-1.5h-7c-.27614 0-.5-.2239-.5-.5zm10.5 2h-9v1.5h9zm-5 3h-4v1.5h4zm3.5 1.5h-1v1h1zm-1-1.5h-1.5v1.5 1 1.5h1.5 1 1.5v-1.5-1-1.5h-1.5zm-2.5 2.5h-4v1.5h4zm6.5 1.25h1.5v2.25h2.25v1.5h-2.25v2.25h-1.5v-2.25h-2.25v-1.5h2.25z"  fill-rule="evenodd"></path></svg>
			<span>Subscribe</span>
		</a>
		<a class="actnbr-action actnbr-actn-following  no-display" href="">
			<svg class="gridicon" height="20" width="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20"><path fill-rule="evenodd" clip-rule="evenodd" d="M16 4.5H4V15C4 15.2761 4.22386 15.5 4.5 15.5H11.5V17H4.5C3.39543 17 2.5 16.1046 2.5 15V4.5V3H4H16H17.5V4.5V12.5H16V4.5ZM5.5 6.5H14.5V8H5.5V6.5ZM5.5 9.5H9.5V11H5.5V9.5ZM12 11H13V12H12V11ZM10.5 9.5H12H13H14.5V11V12V13.5H13H12H10.5V12V11V9.5ZM5.5 12H9.5V13.5H5.5V12Z" fill="#008A20"></path><path class="following-icon-tick" d="M13.5 16L15.5 18L19 14.5" stroke="#008A20" stroke-width="1.5"></path></svg>
			<span>Subscribed</span>
		</a>
								</li>
														<li class="actnbr-signup"><a href="https://wordpress.com/start/">Sign up</a></li>
							<li class="actnbr-login"><a href="https://wordpress.com/log-in?redirect_to=https%3A%2F%2Fr-login.wordpress.com%2Fremote-login.php%3Faction%3Dlink%26back%3Dhttps%253A%252F%252Fkylanandkristen.com%252F2021%252F06%252F06%252Fdance-recital-parks-rec-2021%252F">Log in</a></li>
															<li class="flb-report">
									<a href="https://wordpress.com/abuse/?report_url=https://kylanandkristen.com" target="_blank" rel="noopener noreferrer">
										Report this content									</a>
								</li>
															<li class="actnbr-reader">
									<a href="https://wordpress.com/reader/feeds/81316533">
										View site in Reader									</a>
								</li>
															<li class="actnbr-subs">
									<a href="https://subscribe.wordpress.com/">Manage subscriptions</a>
								</li>
																<li class="actnbr-fold"><a href="">Collapse this bar</a></li>
														</ul>
					</div>
				</div>
			</li>
		</ul>
	</div>
	
<script>
window.addEventListener( "load", function( event ) {
	var link = document.createElement( "link" );
	link.href = "https://s0.wp.com/wp-content/mu-plugins/actionbar/actionbar.css?v=20250116";
	link.type = "text/css";
	link.rel = "stylesheet";
	document.head.appendChild( link );

	var script = document.createElement( "script" );
	script.src = "https://s0.wp.com/wp-content/mu-plugins/actionbar/actionbar.js?v=20250204";
	script.defer = true;
	document.body.appendChild( script );
} );
</script>

			<div id="jp-carousel-loading-overlay">
			<div id="jp-carousel-loading-wrapper">
				<span id="jp-carousel-library-loading">&nbsp;</span>
			</div>
		</div>
		<div class="jp-carousel-overlay" style="display: none;">

		<div class="jp-carousel-container">
			<!-- The Carousel Swiper -->
			<div
				class="jp-carousel-wrap swiper-container jp-carousel-swiper-container jp-carousel-transitions"
				itemscope
				itemtype="https://schema.org/ImageGallery">
				<div class="jp-carousel swiper-wrapper"></div>
				<div class="jp-swiper-button-prev swiper-button-prev">
					<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
						<mask id="maskPrev" mask-type="alpha" maskUnits="userSpaceOnUse" x="8" y="6" width="9" height="12">
							<path d="M16.2072 16.59L11.6496 12L16.2072 7.41L14.8041 6L8.8335 12L14.8041 18L16.2072 16.59Z" fill="white"/>
						</mask>
						<g mask="url(#maskPrev)">
							<rect x="0.579102" width="23.8823" height="24" fill="#FFFFFF"/>
						</g>
					</svg>
				</div>
				<div class="jp-swiper-button-next swiper-button-next">
					<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
						<mask id="maskNext" mask-type="alpha" maskUnits="userSpaceOnUse" x="8" y="6" width="8" height="12">
							<path d="M8.59814 16.59L13.1557 12L8.59814 7.41L10.0012 6L15.9718 12L10.0012 18L8.59814 16.59Z" fill="white"/>
						</mask>
						<g mask="url(#maskNext)">
							<rect x="0.34375" width="23.8822" height="24" fill="#FFFFFF"/>
						</g>
					</svg>
				</div>
			</div>
			<!-- The main close buton -->
			<div class="jp-carousel-close-hint">
				<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
					<mask id="maskClose" mask-type="alpha" maskUnits="userSpaceOnUse" x="5" y="5" width="15" height="14">
						<path d="M19.3166 6.41L17.9135 5L12.3509 10.59L6.78834 5L5.38525 6.41L10.9478 12L5.38525 17.59L6.78834 19L12.3509 13.41L17.9135 19L19.3166 17.59L13.754 12L19.3166 6.41Z" fill="white"/>
					</mask>
					<g mask="url(#maskClose)">
						<rect x="0.409668" width="23.8823" height="24" fill="#FFFFFF"/>
					</g>
				</svg>
			</div>
			<!-- Image info, comments and meta -->
			<div class="jp-carousel-info">
				<div class="jp-carousel-info-footer">
					<div class="jp-carousel-pagination-container">
						<div class="jp-swiper-pagination swiper-pagination"></div>
						<div class="jp-carousel-pagination"></div>
					</div>
					<div class="jp-carousel-photo-title-container">
						<h2 class="jp-carousel-photo-caption"></h2>
					</div>
					<div class="jp-carousel-photo-icons-container">
						<a href="#" class="jp-carousel-icon-btn jp-carousel-icon-info" aria-label="Toggle photo metadata visibility">
							<span class="jp-carousel-icon">
								<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="maskInfo" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="2" width="21" height="20">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M12.7537 2C7.26076 2 2.80273 6.48 2.80273 12C2.80273 17.52 7.26076 22 12.7537 22C18.2466 22 22.7046 17.52 22.7046 12C22.7046 6.48 18.2466 2 12.7537 2ZM11.7586 7V9H13.7488V7H11.7586ZM11.7586 11V17H13.7488V11H11.7586ZM4.79292 12C4.79292 16.41 8.36531 20 12.7537 20C17.142 20 20.7144 16.41 20.7144 12C20.7144 7.59 17.142 4 12.7537 4C8.36531 4 4.79292 7.59 4.79292 12Z" fill="white"/>
									</mask>
									<g mask="url(#maskInfo)">
										<rect x="0.8125" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>
							</span>
						</a>
												<a href="#" class="jp-carousel-icon-btn jp-carousel-icon-comments" aria-label="Toggle photo comments visibility">
							<span class="jp-carousel-icon">
								<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="maskComments" mask-type="alpha" maskUnits="userSpaceOnUse" x="2" y="2" width="21" height="20">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M4.3271 2H20.2486C21.3432 2 22.2388 2.9 22.2388 4V16C22.2388 17.1 21.3432 18 20.2486 18H6.31729L2.33691 22V4C2.33691 2.9 3.2325 2 4.3271 2ZM6.31729 16H20.2486V4H4.3271V18L6.31729 16Z" fill="white"/>
									</mask>
									<g mask="url(#maskComments)">
										<rect x="0.34668" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>

								<span class="jp-carousel-has-comments-indicator" aria-label="This image has comments."></span>
							</span>
						</a>
											</div>
				</div>
				<div class="jp-carousel-info-extra">
					<div class="jp-carousel-info-content-wrapper">
						<div class="jp-carousel-photo-title-container">
							<h2 class="jp-carousel-photo-title"></h2>
						</div>
						<div class="jp-carousel-comments-wrapper">
															<div id="jp-carousel-comments-loading">
									<span>Loading Comments...</span>
								</div>
								<div class="jp-carousel-comments"></div>
								<div id="jp-carousel-comment-form-container">
									<span id="jp-carousel-comment-form-spinner">&nbsp;</span>
									<div id="jp-carousel-comment-post-results"></div>
																														<form id="jp-carousel-comment-form">
												<label for="jp-carousel-comment-form-comment-field" class="screen-reader-text">Write a Comment...</label>
												<textarea
													name="comment"
													class="jp-carousel-comment-form-field jp-carousel-comment-form-textarea"
													id="jp-carousel-comment-form-comment-field"
													placeholder="Write a Comment..."
												></textarea>
												<div id="jp-carousel-comment-form-submit-and-info-wrapper">
													<div id="jp-carousel-comment-form-commenting-as">
																													<fieldset>
																<label for="jp-carousel-comment-form-email-field">Email (Required)</label>
																<input type="text" name="email" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-email-field" />
															</fieldset>
															<fieldset>
																<label for="jp-carousel-comment-form-author-field">Name (Required)</label>
																<input type="text" name="author" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-author-field" />
															</fieldset>
															<fieldset>
																<label for="jp-carousel-comment-form-url-field">Website</label>
																<input type="text" name="url" class="jp-carousel-comment-form-field jp-carousel-comment-form-text-field" id="jp-carousel-comment-form-url-field" />
															</fieldset>
																											</div>
													<input
														type="submit"
														name="submit"
														class="jp-carousel-comment-form-button"
														id="jp-carousel-comment-form-button-submit"
														value="Post Comment" />
												</div>
											</form>
																											</div>
													</div>
						<div class="jp-carousel-image-meta">
							<div class="jp-carousel-title-and-caption">
								<div class="jp-carousel-photo-info">
									<h3 class="jp-carousel-caption" itemprop="caption description"></h3>
								</div>

								<div class="jp-carousel-photo-description"></div>
							</div>
							<ul class="jp-carousel-image-exif" style="display: none;"></ul>
							<a class="jp-carousel-image-download" href="#" target="_blank" style="display: none;">
								<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
									<mask id="mask0" mask-type="alpha" maskUnits="userSpaceOnUse" x="3" y="3" width="19" height="18">
										<path fill-rule="evenodd" clip-rule="evenodd" d="M5.84615 5V19H19.7775V12H21.7677V19C21.7677 20.1 20.8721 21 19.7775 21H5.84615C4.74159 21 3.85596 20.1 3.85596 19V5C3.85596 3.9 4.74159 3 5.84615 3H12.8118V5H5.84615ZM14.802 5V3H21.7677V10H19.7775V6.41L9.99569 16.24L8.59261 14.83L18.3744 5H14.802Z" fill="white"/>
									</mask>
									<g mask="url(#mask0)">
										<rect x="0.870605" width="23.8823" height="24" fill="#FFFFFF"/>
									</g>
								</svg>
								<span class="jp-carousel-download-text"></span>
							</a>
							<div class="jp-carousel-image-map" style="display: none;"></div>
						</div>
					</div>
				</div>
			</div>
		</div>

		</div>
		<link crossorigin='anonymous' rel='stylesheet' id='all-css-0-2' href='https://s2.wp.com/_static/??-eJydzEEKwyAQheEL1Q5JocFFyFmsDkEzjuI4hNy+FJptFln+j8cHezW+cEfukNVU0jWyQMJend/+DaIMuQQlFPCuFRUkkD1WbOajHAifXuQB97Hzcw43vR4Jg1kdEbbjqn7+kufhbUc7vYZxSl9CS2RI&cssminify=yes' type='text/css' media='all' />
<script src="https://s1.wp.com/wp-content/js/mobile-useragent-info.js?m=1609849039i&amp;ver=20241018" id="mobile-useragent-info-js" defer data-wp-strategy="defer"></script>
<script id="twentyseventeen-skip-link-focus-fix-js-extra">
var twentyseventeenScreenReaderText = {"quote":"<svg class=\"icon icon-quote-right\" aria-hidden=\"true\" role=\"img\"> <use href=\"#icon-quote-right\" xlink:href=\"#icon-quote-right\"><\/use> <\/svg>","expand":"Expand child menu","collapse":"Collapse child menu","icon":"<svg class=\"icon icon-angle-down\" aria-hidden=\"true\" role=\"img\"> <use href=\"#icon-angle-down\" xlink:href=\"#icon-angle-down\"><\/use> <span class=\"svg-fallback icon-angle-down\"><\/span><\/svg>"};
</script>
<script id="jetpack-carousel-js-extra">
var jetpackSwiperLibraryPath = {"url":"https:\/\/s2.wp.com\/wp-content\/mu-plugins\/jetpack-plugin\/sun\/_inc\/build\/carousel\/swiper-bundle.min.js"};
var jetpackCarouselStrings = {"widths":[370,700,1000,1200,1400,2000],"is_logged_in":"","lang":"en","ajaxurl":"https:\/\/kylanandkristen.com\/wp-admin\/admin-ajax.php","nonce":"d7fe1ff9be","display_exif":"1","display_comments":"1","single_image_gallery":"1","single_image_gallery_media_file":"","background_color":"black","comment":"Comment","post_comment":"Post Comment","write_comment":"Write a Comment...","loading_comments":"Loading Comments...","image_label":"Open image in full-screen.","download_original":"View full size <span class=\"photo-size\">{0}<span class=\"photo-size-times\">\u00d7<\/span>{1}<\/span>","no_comment_text":"Please be sure to submit some text with your comment.","no_comment_email":"Please provide an email address to comment.","no_comment_author":"Please provide your name to comment.","comment_post_error":"Sorry, but there was an error posting your comment. Please try again later.","comment_approved":"Your comment was approved.","comment_unapproved":"Your comment is in moderation.","camera":"Camera","aperture":"Aperture","shutter_speed":"Shutter Speed","focal_length":"Focal Length","copyright":"Copyright","comment_registration":"0","require_name_email":"1","login_url":"https:\/\/kylanandkristen.wordpress.com\/wp-login.php?redirect_to=https%3A%2F%2Fkylanandkristen.com%2F2020%2F11%2F27%2Fthanksgiving-2020%2F","blog_id":"145008588","meta_data":["camera","aperture","shutter_speed","focal_length","copyright"],"stats_query_args":"blog=145008588&v=wpcom&tz=0&user_id=0&subd=kylanandkristen","is_public":"1"};
</script>
<script id="custom-content-types-data-js-before">
var CUSTOM_CONTENT_TYPE__INITIAL_STATE; typeof CUSTOM_CONTENT_TYPE__INITIAL_STATE === "object" || (CUSTOM_CONTENT_TYPE__INITIAL_STATE = JSON.parse(decodeURIComponent("%7B%22active%22%3Atrue%2C%22over_ride%22%3Afalse%2C%22should_show_testimonials%22%3Atrue%2C%22should_show_portfolios%22%3Atrue%7D")));
</script>
<script crossorigin='anonymous' type='text/javascript'  src='https://s2.wp.com/_static/??-eJydkNEOgjAMRX/I0RCCxgfjT/huxizYMbpJN5C/l0QwxifDU3Nv2tObC2NQxnNEjtAlFVxqiAUsxqBNu2iQxHAlNlAlcjcgrokpohLTe+dWPWUdcWZlB1/QeMcOBUKqII6zMQkO80Bk0CIY518C0lJQjrhVtTdJVE3PTRzWAzU6kt8Wo3G+0m7TqX0k7KfsXcjF/zL+rtbo3idB91lbjaXbc3fKD0VxzPdlUdoXeCipWg=='></script>
<script crossorigin='anonymous' src="https://s0.wp.com/wp-content/mu-plugins/jetpack-plugin/sun/_inc/build/tiled-gallery/tiled-gallery/tiled-gallery.min.js?m=1685112397i&amp;ver=14.4-a.6" id="tiled-gallery-js" defer data-wp-strategy="defer"></script>
<script crossorigin='anonymous' type='text/javascript'  src='https://s0.wp.com/wp-content/mu-plugins/carousel-wpcom/carousel-wpcom.js?m=1620989527i'></script>

	<script type="text/javascript">
		(function () {
			var wpcom_reblog = {
				source: 'toolbar',

				toggle_reblog_box_flair: function (obj_id, post_id) {

					// Go to site selector. This will redirect to their blog if they only have one.
					const postEndpoint = `https://wordpress.com/post`;

					// Ideally we would use the permalink here, but fortunately this will be replaced with the 
					// post permalink in the editor.
					const originalURL = `${ document.location.href }?page_id=${ post_id }`; 
					
					const url =
						postEndpoint +
						'?url=' +
						encodeURIComponent( originalURL ) +
						'&is_post_share=true' +
						'&v=5';

					const redirect = function () {
						if (
							! window.open( url, '_blank' )
						) {
							location.href = url;
						}
					};

					if ( /Firefox/.test( navigator.userAgent ) ) {
						setTimeout( redirect, 0 );
					} else {
						redirect();
					}
				},
			};

			window.wpcom_reblog = wpcom_reblog;
		})();
	</script>
		<script type="text/javascript">
			(function() {
				var extend = function(out) {
					out = out || {};

					for (var i = 1; i < arguments.length; i++) {
						if (!arguments[i])
						continue;

						for (var key in arguments[i]) {
						if (arguments[i].hasOwnProperty(key))
							out[key] = arguments[i][key];
						}
					}

					return out;
				};
				extend( window.infiniteScroll.settings.scripts, ["jquery-core","jquery-migrate","jquery","jquery.wpcom-proxy-request","jetpack-mu-wpcom-settings","rlt-proxy","html5","wpcom-actionbar-placeholder","grofiles-cards","wpgroho","mobile-useragent-info","custom-content-types-data","the-neverending-homepage","twentyseventeen-skip-link-focus-fix","twentyseventeen-navigation","twentyseventeen-global","jquery-scrollto","jetpack-carousel","tiled-gallery","carousel-wpcom"] );
				extend( window.infiniteScroll.settings.styles, ["the-neverending-homepage","wp-block-library","wp-block-library-theme","jetpack-layout-grid","jetpack-ratings","mediaelement","wp-mediaelement","coblocks-frontend","wpcom-core-compat-playlist-styles","wpcom-bbpress2-staff-css","twentyseventeen-fonts","twentyseventeen-style","twentyseventeen-block-style","twentyseventeen-wpcom-style","reblogging","geo-location-flair","infinity-twentyseventeen","h4-global","wp-emoji-styles","videopress-video-style","jetpack-sharing-buttons-style","classic-theme-styles","global-styles","twentyseventeen-ie8","akismet-widget-style","jetpack-global-styles-frontend-style","jetpack-carousel-swiper-css","jetpack-carousel","tiled-gallery","core-block-supports-duotone"] );
			})();
		</script>
				<span id="infinite-aria" aria-live="polite"></span>
		<script src="//stats.wp.com/w.js?68" defer></script> <script type="text/javascript">
_tkq = window._tkq || [];
_stq = window._stq || [];
_tkq.push(['storeContext', {'blog_id':'145008588','blog_tz':'0','user_lang':'en','blog_lang':'en','user_id':'0'}]);
_stq.push(['view', {'blog':'145008588','v':'wpcom','tz':'0','user_id':'0','subd':'kylanandkristen'}]);
_stq.push(['extra', {'crypt':'UE40eW5QN0p8M2Y/RE1mNzc2NTVTamdsd0xoLz9RQkM2K298TXY9bERQMXc2MjhEaVZfb2wwakRoSj0mUkp1THptM1NdbkV1WjZIcU9mVWQmPUIvMlN6Jk8wW3NYVEJ3dWZOWExuWD9VNTEucGUwWitVSWRHJi1NSTEwdXg0N29iMT1bZE8lc0c1QXNveTJbM25GMCxPOERJUlljRnYzel10UG1vNFFlN1RDeltvWm1walUzW05wMWNHXVE9PXhab1pzVl8wQ0JVSmtPJk9hSXF8c2x3ekc9c2l2bXc2STlvUkpEN2xmZEhZeSY5Ni49Q2MwbFRqMWk3UGlSK3F0dXRTTj00dl1LZ2lNYjkxamtMfmd1aiVM'}]);
_stq.push([ 'clickTrackerInit', '145008588', '0' ]);
</script>
<noscript><img src="https://pixel.wp.com/b.gif?v=noscript" style="height:1px;width:1px;overflow:hidden;position:absolute;bottom:1px;" alt="" /></noscript>
<script defer id="bilmur" data-customproperties="{&quot;enq_jquery&quot;:&quot;1&quot;,&quot;logged_in&quot;:&quot;0&quot;,&quot;wptheme&quot;:&quot;pub\/twentyseventeen&quot;,&quot;wptheme_is_block&quot;:&quot;0&quot;}" data-provider="wordpress.com" data-service="simple" data-site-tz="Etc/GMT-0"   src="/wp-content/js/bilmur-4.min.js?i=12&m=202508"></script><script>
( function() {
	function getMobileUserAgentInfo() {
		if ( typeof wpcom_mobile_user_agent_info === 'object' ) {
			wpcom_mobile_user_agent_info.init();
			var mobileStatsQueryString = '';

			if ( wpcom_mobile_user_agent_info.matchedPlatformName !== false ) {
				mobileStatsQueryString += '&x_' + 'mobile_platforms' + '=' + wpcom_mobile_user_agent_info.matchedPlatformName;
			}

			if ( wpcom_mobile_user_agent_info.matchedUserAgentName !== false ) {
				mobileStatsQueryString += '&x_' + 'mobile_devices' + '=' + wpcom_mobile_user_agent_info.matchedUserAgentName;
			}

			if ( wpcom_mobile_user_agent_info.isIPad() ) {
				mobileStatsQueryString += '&x_' + 'ipad_views' + '=' + 'views';
			}

			if ( mobileStatsQueryString != '' ) {
				new Image().src = document.location.protocol + '//pixel.wp.com/g.gif?v=wpcom-no-pv' + mobileStatsQueryString + '&baba=' + Math.random();
			}
		}
	}

	document.addEventListener( 'DOMContentLoaded', getMobileUserAgentInfo );
} )();
</script><svg style="position: absolute; width: 0; height: 0; overflow: hidden;" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<symbol id="icon-behance" viewBox="0 0 37 32">
<path class="path1" d="M33 6.054h-9.125v2.214h9.125v-2.214zM28.5 13.661q-1.607 0-2.607 0.938t-1.107 2.545h7.286q-0.321-3.482-3.571-3.482zM28.786 24.107q1.125 0 2.179-0.571t1.357-1.554h3.946q-1.786 5.482-7.625 5.482-3.821 0-6.080-2.357t-2.259-6.196q0-3.714 2.33-6.17t6.009-2.455q2.464 0 4.295 1.214t2.732 3.196 0.902 4.429q0 0.304-0.036 0.839h-11.75q0 1.982 1.027 3.063t2.973 1.080zM4.946 23.214h5.286q3.661 0 3.661-2.982 0-3.214-3.554-3.214h-5.393v6.196zM4.946 13.625h5.018q1.393 0 2.205-0.652t0.813-2.027q0-2.571-3.393-2.571h-4.643v5.25zM0 4.536h10.607q1.554 0 2.768 0.25t2.259 0.848 1.607 1.723 0.563 2.75q0 3.232-3.071 4.696 2.036 0.571 3.071 2.054t1.036 3.643q0 1.339-0.438 2.438t-1.179 1.848-1.759 1.268-2.161 0.75-2.393 0.232h-10.911v-22.5z"></path>
</symbol>
<symbol id="icon-deviantart" viewBox="0 0 18 32">
<path class="path1" d="M18.286 5.411l-5.411 10.393 0.429 0.554h4.982v7.411h-9.054l-0.786 0.536-2.536 4.875-0.536 0.536h-5.375v-5.411l5.411-10.411-0.429-0.536h-4.982v-7.411h9.054l0.786-0.536 2.536-4.875 0.536-0.536h5.375v5.411z"></path>
</symbol>
<symbol id="icon-medium" viewBox="0 0 32 32">
<path class="path1" d="M10.661 7.518v20.946q0 0.446-0.223 0.759t-0.652 0.313q-0.304 0-0.589-0.143l-8.304-4.161q-0.375-0.179-0.634-0.598t-0.259-0.83v-20.357q0-0.357 0.179-0.607t0.518-0.25q0.25 0 0.786 0.268l9.125 4.571q0.054 0.054 0.054 0.089zM11.804 9.321l9.536 15.464-9.536-4.75v-10.714zM32 9.643v18.821q0 0.446-0.25 0.723t-0.679 0.277-0.839-0.232l-7.875-3.929zM31.946 7.5q0 0.054-4.58 7.491t-5.366 8.705l-6.964-11.321 5.786-9.411q0.304-0.5 0.929-0.5 0.25 0 0.464 0.107l9.661 4.821q0.071 0.036 0.071 0.107z"></path>
</symbol>
<symbol id="icon-slideshare" viewBox="0 0 32 32">
<path class="path1" d="M15.589 13.214q0 1.482-1.134 2.545t-2.723 1.063-2.723-1.063-1.134-2.545q0-1.5 1.134-2.554t2.723-1.054 2.723 1.054 1.134 2.554zM24.554 13.214q0 1.482-1.125 2.545t-2.732 1.063q-1.589 0-2.723-1.063t-1.134-2.545q0-1.5 1.134-2.554t2.723-1.054q1.607 0 2.732 1.054t1.125 2.554zM28.571 16.429v-11.911q0-1.554-0.571-2.205t-1.982-0.652h-19.857q-1.482 0-2.009 0.607t-0.527 2.25v12.018q0.768 0.411 1.58 0.714t1.446 0.5 1.446 0.33 1.268 0.196 1.25 0.071 1.045 0.009 1.009-0.036 0.795-0.036q1.214-0.018 1.696 0.482 0.107 0.107 0.179 0.161 0.464 0.446 1.089 0.911 0.125-1.625 2.107-1.554 0.089 0 0.652 0.027t0.768 0.036 0.813 0.018 0.946-0.018 0.973-0.080 1.089-0.152 1.107-0.241 1.196-0.348 1.205-0.482 1.286-0.616zM31.482 16.339q-2.161 2.661-6.643 4.5 1.5 5.089-0.411 8.304-1.179 2.018-3.268 2.643-1.857 0.571-3.25-0.268-1.536-0.911-1.464-2.929l-0.018-5.821v-0.018q-0.143-0.036-0.438-0.107t-0.42-0.089l-0.018 6.036q0.071 2.036-1.482 2.929-1.411 0.839-3.268 0.268-2.089-0.643-3.25-2.679-1.875-3.214-0.393-8.268-4.482-1.839-6.643-4.5-0.446-0.661-0.071-1.125t1.071 0.018q0.054 0.036 0.196 0.125t0.196 0.143v-12.393q0-1.286 0.839-2.196t2.036-0.911h22.446q1.196 0 2.036 0.911t0.839 2.196v12.393l0.375-0.268q0.696-0.482 1.071-0.018t-0.071 1.125z"></path>
</symbol>
<symbol id="icon-snapchat-ghost" viewBox="0 0 30 32">
<path class="path1" d="M15.143 2.286q2.393-0.018 4.295 1.223t2.92 3.438q0.482 1.036 0.482 3.196 0 0.839-0.161 3.411 0.25 0.125 0.5 0.125 0.321 0 0.911-0.241t0.911-0.241q0.518 0 1 0.321t0.482 0.821q0 0.571-0.563 0.964t-1.232 0.563-1.232 0.518-0.563 0.848q0 0.268 0.214 0.768 0.661 1.464 1.83 2.679t2.58 1.804q0.5 0.214 1.429 0.411 0.5 0.107 0.5 0.625 0 1.25-3.911 1.839-0.125 0.196-0.196 0.696t-0.25 0.83-0.589 0.33q-0.357 0-1.107-0.116t-1.143-0.116q-0.661 0-1.107 0.089-0.571 0.089-1.125 0.402t-1.036 0.679-1.036 0.723-1.357 0.598-1.768 0.241q-0.929 0-1.723-0.241t-1.339-0.598-1.027-0.723-1.036-0.679-1.107-0.402q-0.464-0.089-1.125-0.089-0.429 0-1.17 0.134t-1.045 0.134q-0.446 0-0.625-0.33t-0.25-0.848-0.196-0.714q-3.911-0.589-3.911-1.839 0-0.518 0.5-0.625 0.929-0.196 1.429-0.411 1.393-0.571 2.58-1.804t1.83-2.679q0.214-0.5 0.214-0.768 0-0.5-0.563-0.848t-1.241-0.527-1.241-0.563-0.563-0.938q0-0.482 0.464-0.813t0.982-0.33q0.268 0 0.857 0.232t0.946 0.232q0.321 0 0.571-0.125-0.161-2.536-0.161-3.393 0-2.179 0.482-3.214 1.143-2.446 3.071-3.536t4.714-1.125z"></path>
</symbol>
<symbol id="icon-yelp" viewBox="0 0 27 32">
<path class="path1" d="M13.804 23.554v2.268q-0.018 5.214-0.107 5.446-0.214 0.571-0.911 0.714-0.964 0.161-3.241-0.679t-2.902-1.589q-0.232-0.268-0.304-0.643-0.018-0.214 0.071-0.464 0.071-0.179 0.607-0.839t3.232-3.857q0.018 0 1.071-1.25 0.268-0.339 0.705-0.438t0.884 0.063q0.429 0.179 0.67 0.518t0.223 0.75zM11.143 19.071q-0.054 0.982-0.929 1.25l-2.143 0.696q-4.911 1.571-5.214 1.571-0.625-0.036-0.964-0.643-0.214-0.446-0.304-1.339-0.143-1.357 0.018-2.973t0.536-2.223 1-0.571q0.232 0 3.607 1.375 1.25 0.518 2.054 0.839l1.5 0.607q0.411 0.161 0.634 0.545t0.205 0.866zM25.893 24.375q-0.125 0.964-1.634 2.875t-2.42 2.268q-0.661 0.25-1.125-0.125-0.25-0.179-3.286-5.125l-0.839-1.375q-0.25-0.375-0.205-0.821t0.348-0.821q0.625-0.768 1.482-0.464 0.018 0.018 2.125 0.714 3.625 1.179 4.321 1.42t0.839 0.366q0.5 0.393 0.393 1.089zM13.893 13.089q0.089 1.821-0.964 2.179-1.036 0.304-2.036-1.268l-6.75-10.679q-0.143-0.625 0.339-1.107 0.732-0.768 3.705-1.598t4.009-0.563q0.714 0.179 0.875 0.804 0.054 0.321 0.393 5.455t0.429 6.777zM25.714 15.018q0.054 0.696-0.464 1.054-0.268 0.179-5.875 1.536-1.196 0.268-1.625 0.411l0.018-0.036q-0.411 0.107-0.821-0.071t-0.661-0.571q-0.536-0.839 0-1.554 0.018-0.018 1.339-1.821 2.232-3.054 2.679-3.643t0.607-0.696q0.5-0.339 1.161-0.036 0.857 0.411 2.196 2.384t1.446 2.991v0.054z"></path>
</symbol>
<symbol id="icon-vine" viewBox="0 0 27 32">
<path class="path1" d="M26.732 14.768v3.536q-1.804 0.411-3.536 0.411-1.161 2.429-2.955 4.839t-3.241 3.848-2.286 1.902q-1.429 0.804-2.893-0.054-0.5-0.304-1.080-0.777t-1.518-1.491-1.83-2.295-1.92-3.286-1.884-4.357-1.634-5.616-1.259-6.964h5.054q0.464 3.893 1.25 7.116t1.866 5.661 2.17 4.205 2.5 3.482q3.018-3.018 5.125-7.25-2.536-1.286-3.982-3.929t-1.446-5.946q0-3.429 1.857-5.616t5.071-2.188q3.179 0 4.875 1.884t1.696 5.313q0 2.839-1.036 5.107-0.125 0.018-0.348 0.054t-0.821 0.036-1.125-0.107-1.107-0.455-0.902-0.92q0.554-1.839 0.554-3.286 0-1.554-0.518-2.357t-1.411-0.804q-0.946 0-1.518 0.884t-0.571 2.509q0 3.321 1.875 5.241t4.768 1.92q1.107 0 2.161-0.25z"></path>
</symbol>
<symbol id="icon-vk" viewBox="0 0 35 32">
<path class="path1" d="M34.232 9.286q0.411 1.143-2.679 5.25-0.429 0.571-1.161 1.518-1.393 1.786-1.607 2.339-0.304 0.732 0.25 1.446 0.304 0.375 1.446 1.464h0.018l0.071 0.071q2.518 2.339 3.411 3.946 0.054 0.089 0.116 0.223t0.125 0.473-0.009 0.607-0.446 0.491-1.054 0.223l-4.571 0.071q-0.429 0.089-1-0.089t-0.929-0.393l-0.357-0.214q-0.536-0.375-1.25-1.143t-1.223-1.384-1.089-1.036-1.009-0.277q-0.054 0.018-0.143 0.063t-0.304 0.259-0.384 0.527-0.304 0.929-0.116 1.384q0 0.268-0.063 0.491t-0.134 0.33l-0.071 0.089q-0.321 0.339-0.946 0.393h-2.054q-1.268 0.071-2.607-0.295t-2.348-0.946-1.839-1.179-1.259-1.027l-0.446-0.429q-0.179-0.179-0.491-0.536t-1.277-1.625-1.893-2.696-2.188-3.768-2.33-4.857q-0.107-0.286-0.107-0.482t0.054-0.286l0.071-0.107q0.268-0.339 1.018-0.339l4.893-0.036q0.214 0.036 0.411 0.116t0.286 0.152l0.089 0.054q0.286 0.196 0.429 0.571 0.357 0.893 0.821 1.848t0.732 1.455l0.286 0.518q0.518 1.071 1 1.857t0.866 1.223 0.741 0.688 0.607 0.25 0.482-0.089q0.036-0.018 0.089-0.089t0.214-0.393 0.241-0.839 0.17-1.446 0-2.232q-0.036-0.714-0.161-1.304t-0.25-0.821l-0.107-0.214q-0.446-0.607-1.518-0.768-0.232-0.036 0.089-0.429 0.304-0.339 0.679-0.536 0.946-0.464 4.268-0.429 1.464 0.018 2.411 0.232 0.357 0.089 0.598 0.241t0.366 0.429 0.188 0.571 0.063 0.813-0.018 0.982-0.045 1.259-0.027 1.473q0 0.196-0.018 0.75t-0.009 0.857 0.063 0.723 0.205 0.696 0.402 0.438q0.143 0.036 0.304 0.071t0.464-0.196 0.679-0.616 0.929-1.196 1.214-1.92q1.071-1.857 1.911-4.018 0.071-0.179 0.179-0.313t0.196-0.188l0.071-0.054 0.089-0.045t0.232-0.054 0.357-0.009l5.143-0.036q0.696-0.089 1.143 0.045t0.554 0.295z"></path>
</symbol>
<symbol id="icon-search" viewBox="0 0 30 32">
<path class="path1" d="M20.571 14.857q0-3.304-2.348-5.652t-5.652-2.348-5.652 2.348-2.348 5.652 2.348 5.652 5.652 2.348 5.652-2.348 2.348-5.652zM29.714 29.714q0 0.929-0.679 1.607t-1.607 0.679q-0.964 0-1.607-0.679l-6.125-6.107q-3.196 2.214-7.125 2.214-2.554 0-4.884-0.991t-4.018-2.679-2.679-4.018-0.991-4.884 0.991-4.884 2.679-4.018 4.018-2.679 4.884-0.991 4.884 0.991 4.018 2.679 2.679 4.018 0.991 4.884q0 3.929-2.214 7.125l6.125 6.125q0.661 0.661 0.661 1.607z"></path>
</symbol>
<symbol id="icon-envelope-o" viewBox="0 0 32 32">
<path class="path1" d="M29.714 26.857v-13.714q-0.571 0.643-1.232 1.179-4.786 3.679-7.607 6.036-0.911 0.768-1.482 1.196t-1.545 0.866-1.83 0.438h-0.036q-0.857 0-1.83-0.438t-1.545-0.866-1.482-1.196q-2.821-2.357-7.607-6.036-0.661-0.536-1.232-1.179v13.714q0 0.232 0.17 0.402t0.402 0.17h26.286q0.232 0 0.402-0.17t0.17-0.402zM29.714 8.089v-0.438t-0.009-0.232-0.054-0.223-0.098-0.161-0.161-0.134-0.25-0.045h-26.286q-0.232 0-0.402 0.17t-0.17 0.402q0 3 2.625 5.071 3.446 2.714 7.161 5.661 0.107 0.089 0.625 0.527t0.821 0.67 0.795 0.563 0.902 0.491 0.768 0.161h0.036q0.357 0 0.768-0.161t0.902-0.491 0.795-0.563 0.821-0.67 0.625-0.527q3.714-2.946 7.161-5.661 0.964-0.768 1.795-2.063t0.83-2.348zM32 7.429v19.429q0 1.179-0.839 2.018t-2.018 0.839h-26.286q-1.179 0-2.018-0.839t-0.839-2.018v-19.429q0-1.179 0.839-2.018t2.018-0.839h26.286q1.179 0 2.018 0.839t0.839 2.018z"></path>
</symbol>
<symbol id="icon-close" viewBox="0 0 25 32">
<path class="path1" d="M23.179 23.607q0 0.714-0.5 1.214l-2.429 2.429q-0.5 0.5-1.214 0.5t-1.214-0.5l-5.25-5.25-5.25 5.25q-0.5 0.5-1.214 0.5t-1.214-0.5l-2.429-2.429q-0.5-0.5-0.5-1.214t0.5-1.214l5.25-5.25-5.25-5.25q-0.5-0.5-0.5-1.214t0.5-1.214l2.429-2.429q0.5-0.5 1.214-0.5t1.214 0.5l5.25 5.25 5.25-5.25q0.5-0.5 1.214-0.5t1.214 0.5l2.429 2.429q0.5 0.5 0.5 1.214t-0.5 1.214l-5.25 5.25 5.25 5.25q0.5 0.5 0.5 1.214z"></path>
</symbol>
<symbol id="icon-angle-down" viewBox="0 0 21 32">
<path class="path1" d="M19.196 13.143q0 0.232-0.179 0.411l-8.321 8.321q-0.179 0.179-0.411 0.179t-0.411-0.179l-8.321-8.321q-0.179-0.179-0.179-0.411t0.179-0.411l0.893-0.893q0.179-0.179 0.411-0.179t0.411 0.179l7.018 7.018 7.018-7.018q0.179-0.179 0.411-0.179t0.411 0.179l0.893 0.893q0.179 0.179 0.179 0.411z"></path>
</symbol>
<symbol id="icon-folder-open" viewBox="0 0 34 32">
<path class="path1" d="M33.554 17q0 0.554-0.554 1.179l-6 7.071q-0.768 0.911-2.152 1.545t-2.563 0.634h-19.429q-0.607 0-1.080-0.232t-0.473-0.768q0-0.554 0.554-1.179l6-7.071q0.768-0.911 2.152-1.545t2.563-0.634h19.429q0.607 0 1.080 0.232t0.473 0.768zM27.429 10.857v2.857h-14.857q-1.679 0-3.518 0.848t-2.929 2.134l-6.107 7.179q0-0.071-0.009-0.223t-0.009-0.223v-17.143q0-1.643 1.179-2.821t2.821-1.179h5.714q1.643 0 2.821 1.179t1.179 2.821v0.571h9.714q1.643 0 2.821 1.179t1.179 2.821z"></path>
</symbol>
<symbol id="icon-twitter" viewBox="0 0 30 32">
<path class="path1" d="M28.929 7.286q-1.196 1.75-2.893 2.982 0.018 0.25 0.018 0.75 0 2.321-0.679 4.634t-2.063 4.437-3.295 3.759-4.607 2.607-5.768 0.973q-4.839 0-8.857-2.589 0.625 0.071 1.393 0.071 4.018 0 7.161-2.464-1.875-0.036-3.357-1.152t-2.036-2.848q0.589 0.089 1.089 0.089 0.768 0 1.518-0.196-2-0.411-3.313-1.991t-1.313-3.67v-0.071q1.214 0.679 2.607 0.732-1.179-0.786-1.875-2.054t-0.696-2.75q0-1.571 0.786-2.911 2.161 2.661 5.259 4.259t6.634 1.777q-0.143-0.679-0.143-1.321 0-2.393 1.688-4.080t4.080-1.688q2.5 0 4.214 1.821 1.946-0.375 3.661-1.393-0.661 2.054-2.536 3.179 1.661-0.179 3.321-0.893z"></path>
</symbol>
<symbol id="icon-facebook" viewBox="0 0 19 32">
<path class="path1" d="M17.125 0.214v4.714h-2.804q-1.536 0-2.071 0.643t-0.536 1.929v3.375h5.232l-0.696 5.286h-4.536v13.554h-5.464v-13.554h-4.554v-5.286h4.554v-3.893q0-3.321 1.857-5.152t4.946-1.83q2.625 0 4.071 0.214z"></path>
</symbol>
<symbol id="icon-github" viewBox="0 0 27 32">
<path class="path1" d="M13.714 2.286q3.732 0 6.884 1.839t4.991 4.991 1.839 6.884q0 4.482-2.616 8.063t-6.759 4.955q-0.482 0.089-0.714-0.125t-0.232-0.536q0-0.054 0.009-1.366t0.009-2.402q0-1.732-0.929-2.536 1.018-0.107 1.83-0.321t1.679-0.696 1.446-1.188 0.946-1.875 0.366-2.688q0-2.125-1.411-3.679 0.661-1.625-0.143-3.643-0.5-0.161-1.446 0.196t-1.643 0.786l-0.679 0.429q-1.661-0.464-3.429-0.464t-3.429 0.464q-0.286-0.196-0.759-0.482t-1.491-0.688-1.518-0.241q-0.804 2.018-0.143 3.643-1.411 1.554-1.411 3.679 0 1.518 0.366 2.679t0.938 1.875 1.438 1.196 1.679 0.696 1.83 0.321q-0.696 0.643-0.875 1.839-0.375 0.179-0.804 0.268t-1.018 0.089-1.17-0.384-0.991-1.116q-0.339-0.571-0.866-0.929t-0.884-0.429l-0.357-0.054q-0.375 0-0.518 0.080t-0.089 0.205 0.161 0.25 0.232 0.214l0.125 0.089q0.393 0.179 0.777 0.679t0.563 0.911l0.179 0.411q0.232 0.679 0.786 1.098t1.196 0.536 1.241 0.125 0.991-0.063l0.411-0.071q0 0.679 0.009 1.58t0.009 0.973q0 0.321-0.232 0.536t-0.714 0.125q-4.143-1.375-6.759-4.955t-2.616-8.063q0-3.732 1.839-6.884t4.991-4.991 6.884-1.839zM5.196 21.982q0.054-0.125-0.125-0.214-0.179-0.054-0.232 0.036-0.054 0.125 0.125 0.214 0.161 0.107 0.232-0.036zM5.75 22.589q0.125-0.089-0.036-0.286-0.179-0.161-0.286-0.054-0.125 0.089 0.036 0.286 0.179 0.179 0.286 0.054zM6.286 23.393q0.161-0.125 0-0.339-0.143-0.232-0.304-0.107-0.161 0.089 0 0.321t0.304 0.125zM7.036 24.143q0.143-0.143-0.071-0.339-0.214-0.214-0.357-0.054-0.161 0.143 0.071 0.339 0.214 0.214 0.357 0.054zM8.054 24.589q0.054-0.196-0.232-0.286-0.268-0.071-0.339 0.125t0.232 0.268q0.268 0.107 0.339-0.107zM9.179 24.679q0-0.232-0.304-0.196-0.286 0-0.286 0.196 0 0.232 0.304 0.196 0.286 0 0.286-0.196zM10.214 24.5q-0.036-0.196-0.321-0.161-0.286 0.054-0.25 0.268t0.321 0.143 0.25-0.25z"></path>
</symbol>
<symbol id="icon-bars" viewBox="0 0 27 32">
<path class="path1" d="M27.429 24v2.286q0 0.464-0.339 0.804t-0.804 0.339h-25.143q-0.464 0-0.804-0.339t-0.339-0.804v-2.286q0-0.464 0.339-0.804t0.804-0.339h25.143q0.464 0 0.804 0.339t0.339 0.804zM27.429 14.857v2.286q0 0.464-0.339 0.804t-0.804 0.339h-25.143q-0.464 0-0.804-0.339t-0.339-0.804v-2.286q0-0.464 0.339-0.804t0.804-0.339h25.143q0.464 0 0.804 0.339t0.339 0.804zM27.429 5.714v2.286q0 0.464-0.339 0.804t-0.804 0.339h-25.143q-0.464 0-0.804-0.339t-0.339-0.804v-2.286q0-0.464 0.339-0.804t0.804-0.339h25.143q0.464 0 0.804 0.339t0.339 0.804z"></path>
</symbol>
<symbol id="icon-google-plus" viewBox="0 0 41 32">
<path class="path1" d="M25.661 16.304q0 3.714-1.554 6.616t-4.429 4.536-6.589 1.634q-2.661 0-5.089-1.036t-4.179-2.786-2.786-4.179-1.036-5.089 1.036-5.089 2.786-4.179 4.179-2.786 5.089-1.036q5.107 0 8.768 3.429l-3.554 3.411q-2.089-2.018-5.214-2.018-2.196 0-4.063 1.107t-2.955 3.009-1.089 4.152 1.089 4.152 2.955 3.009 4.063 1.107q1.482 0 2.723-0.411t2.045-1.027 1.402-1.402 0.875-1.482 0.384-1.321h-7.429v-4.5h12.357q0.214 1.125 0.214 2.179zM41.143 14.125v3.75h-3.732v3.732h-3.75v-3.732h-3.732v-3.75h3.732v-3.732h3.75v3.732h3.732z"></path>
</symbol>
<symbol id="icon-linkedin" viewBox="0 0 27 32">
<path class="path1" d="M6.232 11.161v17.696h-5.893v-17.696h5.893zM6.607 5.696q0.018 1.304-0.902 2.179t-2.42 0.875h-0.036q-1.464 0-2.357-0.875t-0.893-2.179q0-1.321 0.92-2.188t2.402-0.866 2.375 0.866 0.911 2.188zM27.429 18.714v10.143h-5.875v-9.464q0-1.875-0.723-2.938t-2.259-1.063q-1.125 0-1.884 0.616t-1.134 1.527q-0.196 0.536-0.196 1.446v9.875h-5.875q0.036-7.125 0.036-11.554t-0.018-5.286l-0.018-0.857h5.875v2.571h-0.036q0.357-0.571 0.732-1t1.009-0.929 1.554-0.777 2.045-0.277q3.054 0 4.911 2.027t1.857 5.938z"></path>
</symbol>
<symbol id="icon-quote-right" viewBox="0 0 30 32">
<path class="path1" d="M13.714 5.714v12.571q0 1.857-0.723 3.545t-1.955 2.92-2.92 1.955-3.545 0.723h-1.143q-0.464 0-0.804-0.339t-0.339-0.804v-2.286q0-0.464 0.339-0.804t0.804-0.339h1.143q1.893 0 3.232-1.339t1.339-3.232v-0.571q0-0.714-0.5-1.214t-1.214-0.5h-4q-1.429 0-2.429-1t-1-2.429v-6.857q0-1.429 1-2.429t2.429-1h6.857q1.429 0 2.429 1t1 2.429zM29.714 5.714v12.571q0 1.857-0.723 3.545t-1.955 2.92-2.92 1.955-3.545 0.723h-1.143q-0.464 0-0.804-0.339t-0.339-0.804v-2.286q0-0.464 0.339-0.804t0.804-0.339h1.143q1.893 0 3.232-1.339t1.339-3.232v-0.571q0-0.714-0.5-1.214t-1.214-0.5h-4q-1.429 0-2.429-1t-1-2.429v-6.857q0-1.429 1-2.429t2.429-1h6.857q1.429 0 2.429 1t1 2.429z"></path>
</symbol>
<symbol id="icon-mail-reply" viewBox="0 0 32 32">
<path class="path1" d="M32 20q0 2.964-2.268 8.054-0.054 0.125-0.188 0.429t-0.241 0.536-0.232 0.393q-0.214 0.304-0.5 0.304-0.268 0-0.42-0.179t-0.152-0.446q0-0.161 0.045-0.473t0.045-0.42q0.089-1.214 0.089-2.196 0-1.804-0.313-3.232t-0.866-2.473-1.429-1.804-1.884-1.241-2.375-0.759-2.75-0.384-3.134-0.107h-4v4.571q0 0.464-0.339 0.804t-0.804 0.339-0.804-0.339l-9.143-9.143q-0.339-0.339-0.339-0.804t0.339-0.804l9.143-9.143q0.339-0.339 0.804-0.339t0.804 0.339 0.339 0.804v4.571h4q12.732 0 15.625 7.196 0.946 2.393 0.946 5.946z"></path>
</symbol>
<symbol id="icon-youtube" viewBox="0 0 27 32">
<path class="path1" d="M17.339 22.214v3.768q0 1.196-0.696 1.196-0.411 0-0.804-0.393v-5.375q0.393-0.393 0.804-0.393 0.696 0 0.696 1.196zM23.375 22.232v0.821h-1.607v-0.821q0-1.214 0.804-1.214t0.804 1.214zM6.125 18.339h1.911v-1.679h-5.571v1.679h1.875v10.161h1.786v-10.161zM11.268 28.5h1.589v-8.821h-1.589v6.75q-0.536 0.75-1.018 0.75-0.321 0-0.375-0.375-0.018-0.054-0.018-0.625v-6.5h-1.589v6.982q0 0.875 0.143 1.304 0.214 0.661 1.036 0.661 0.857 0 1.821-1.089v0.964zM18.929 25.857v-3.518q0-1.304-0.161-1.768-0.304-1-1.268-1-0.893 0-1.661 0.964v-3.875h-1.589v11.839h1.589v-0.857q0.804 0.982 1.661 0.982 0.964 0 1.268-0.982 0.161-0.482 0.161-1.786zM24.964 25.679v-0.232h-1.625q0 0.911-0.036 1.089-0.125 0.643-0.714 0.643-0.821 0-0.821-1.232v-1.554h3.196v-1.839q0-1.411-0.482-2.071-0.696-0.911-1.893-0.911-1.214 0-1.911 0.911-0.5 0.661-0.5 2.071v3.089q0 1.411 0.518 2.071 0.696 0.911 1.929 0.911 1.286 0 1.929-0.946 0.321-0.482 0.375-0.964 0.036-0.161 0.036-1.036zM14.107 9.375v-3.75q0-1.232-0.768-1.232t-0.768 1.232v3.75q0 1.25 0.768 1.25t0.768-1.25zM26.946 22.786q0 4.179-0.464 6.25-0.25 1.054-1.036 1.768t-1.821 0.821q-3.286 0.375-9.911 0.375t-9.911-0.375q-1.036-0.107-1.83-0.821t-1.027-1.768q-0.464-2-0.464-6.25 0-4.179 0.464-6.25 0.25-1.054 1.036-1.768t1.839-0.839q3.268-0.357 9.893-0.357t9.911 0.357q1.036 0.125 1.83 0.839t1.027 1.768q0.464 2 0.464 6.25zM9.125 0h1.821l-2.161 7.125v4.839h-1.786v-4.839q-0.25-1.321-1.089-3.786-0.661-1.839-1.161-3.339h1.893l1.268 4.696zM15.732 5.946v3.125q0 1.446-0.5 2.107-0.661 0.911-1.893 0.911-1.196 0-1.875-0.911-0.5-0.679-0.5-2.107v-3.125q0-1.429 0.5-2.089 0.679-0.911 1.875-0.911 1.232 0 1.893 0.911 0.5 0.661 0.5 2.089zM21.714 3.054v8.911h-1.625v-0.982q-0.946 1.107-1.839 1.107-0.821 0-1.054-0.661-0.143-0.429-0.143-1.339v-7.036h1.625v6.554q0 0.589 0.018 0.625 0.054 0.393 0.375 0.393 0.482 0 1.018-0.768v-6.804h1.625z"></path>
</symbol>
<symbol id="icon-dropbox" viewBox="0 0 32 32">
<path class="path1" d="M7.179 12.625l8.821 5.446-6.107 5.089-8.75-5.696zM24.786 22.536v1.929l-8.75 5.232v0.018l-0.018-0.018-0.018 0.018v-0.018l-8.732-5.232v-1.929l2.625 1.714 6.107-5.071v-0.036l0.018 0.018 0.018-0.018v0.036l6.125 5.071zM9.893 2.107l6.107 5.089-8.821 5.429-6.036-4.821zM24.821 12.625l6.036 4.839-8.732 5.696-6.125-5.089zM22.125 2.107l8.732 5.696-6.036 4.821-8.821-5.429z"></path>
</symbol>
<symbol id="icon-instagram" viewBox="0 0 27 32">
<path class="path1" d="M18.286 16q0-1.893-1.339-3.232t-3.232-1.339-3.232 1.339-1.339 3.232 1.339 3.232 3.232 1.339 3.232-1.339 1.339-3.232zM20.75 16q0 2.929-2.054 4.982t-4.982 2.054-4.982-2.054-2.054-4.982 2.054-4.982 4.982-2.054 4.982 2.054 2.054 4.982zM22.679 8.679q0 0.679-0.482 1.161t-1.161 0.482-1.161-0.482-0.482-1.161 0.482-1.161 1.161-0.482 1.161 0.482 0.482 1.161zM13.714 4.75q-0.125 0-1.366-0.009t-1.884 0-1.723 0.054-1.839 0.179-1.277 0.33q-0.893 0.357-1.571 1.036t-1.036 1.571q-0.196 0.518-0.33 1.277t-0.179 1.839-0.054 1.723 0 1.884 0.009 1.366-0.009 1.366 0 1.884 0.054 1.723 0.179 1.839 0.33 1.277q0.357 0.893 1.036 1.571t1.571 1.036q0.518 0.196 1.277 0.33t1.839 0.179 1.723 0.054 1.884 0 1.366-0.009 1.366 0.009 1.884 0 1.723-0.054 1.839-0.179 1.277-0.33q0.893-0.357 1.571-1.036t1.036-1.571q0.196-0.518 0.33-1.277t0.179-1.839 0.054-1.723 0-1.884-0.009-1.366 0.009-1.366 0-1.884-0.054-1.723-0.179-1.839-0.33-1.277q-0.357-0.893-1.036-1.571t-1.571-1.036q-0.518-0.196-1.277-0.33t-1.839-0.179-1.723-0.054-1.884 0-1.366 0.009zM27.429 16q0 4.089-0.089 5.661-0.179 3.714-2.214 5.75t-5.75 2.214q-1.571 0.089-5.661 0.089t-5.661-0.089q-3.714-0.179-5.75-2.214t-2.214-5.75q-0.089-1.571-0.089-5.661t0.089-5.661q0.179-3.714 2.214-5.75t5.75-2.214q1.571-0.089 5.661-0.089t5.661 0.089q3.714 0.179 5.75 2.214t2.214 5.75q0.089 1.571 0.089 5.661z"></path>
</symbol>
<symbol id="icon-flickr" viewBox="0 0 27 32">
<path class="path1" d="M22.286 2.286q2.125 0 3.634 1.509t1.509 3.634v17.143q0 2.125-1.509 3.634t-3.634 1.509h-17.143q-2.125 0-3.634-1.509t-1.509-3.634v-17.143q0-2.125 1.509-3.634t3.634-1.509h17.143zM12.464 16q0-1.571-1.107-2.679t-2.679-1.107-2.679 1.107-1.107 2.679 1.107 2.679 2.679 1.107 2.679-1.107 1.107-2.679zM22.536 16q0-1.571-1.107-2.679t-2.679-1.107-2.679 1.107-1.107 2.679 1.107 2.679 2.679 1.107 2.679-1.107 1.107-2.679z"></path>
</symbol>
<symbol id="icon-tumblr" viewBox="0 0 19 32">
<path class="path1" d="M16.857 23.732l1.429 4.232q-0.411 0.625-1.982 1.179t-3.161 0.571q-1.857 0.036-3.402-0.464t-2.545-1.321-1.696-1.893-0.991-2.143-0.295-2.107v-9.714h-3v-3.839q1.286-0.464 2.304-1.241t1.625-1.607 1.036-1.821 0.607-1.768 0.268-1.58q0.018-0.089 0.080-0.152t0.134-0.063h4.357v7.571h5.946v4.5h-5.964v9.25q0 0.536 0.116 1t0.402 0.938 0.884 0.741 1.455 0.25q1.393-0.036 2.393-0.518z"></path>
</symbol>
<symbol id="icon-dockerhub" viewBox="0 0 24 28">
<path class="path1" d="M1.597 10.257h2.911v2.83H1.597v-2.83zm3.573 0h2.91v2.83H5.17v-2.83zm0-3.627h2.91v2.829H5.17V6.63zm3.57 3.627h2.912v2.83H8.74v-2.83zm0-3.627h2.912v2.829H8.74V6.63zm3.573 3.627h2.911v2.83h-2.911v-2.83zm0-3.627h2.911v2.829h-2.911V6.63zm3.572 3.627h2.911v2.83h-2.911v-2.83zM12.313 3h2.911v2.83h-2.911V3zm-6.65 14.173c-.449 0-.812.354-.812.788 0 .435.364.788.812.788.447 0 .811-.353.811-.788 0-.434-.363-.788-.811-.788"></path>
<path class="path2" d="M28.172 11.721c-.978-.549-2.278-.624-3.388-.306-.136-1.146-.91-2.149-1.83-2.869l-.366-.286-.307.345c-.618.692-.8 1.845-.718 2.73.063.651.273 1.312.685 1.834-.313.183-.668.328-.985.434-.646.212-1.347.33-2.028.33H.083l-.042.429c-.137 1.432.065 2.866.674 4.173l.262.519.03.048c1.8 2.973 4.963 4.225 8.41 4.225 6.672 0 12.174-2.896 14.702-9.015 1.689.085 3.417-.4 4.243-1.968l.211-.4-.401-.223zM5.664 19.458c-.85 0-1.542-.671-1.542-1.497 0-.825.691-1.498 1.541-1.498.849 0 1.54.672 1.54 1.497s-.69 1.498-1.539 1.498z"></path>
</symbol>
<symbol id="icon-dribbble" viewBox="0 0 27 32">
<path class="path1" d="M18.286 26.786q-0.75-4.304-2.5-8.893h-0.036l-0.036 0.018q-0.286 0.107-0.768 0.295t-1.804 0.875-2.446 1.464-2.339 2.045-1.839 2.643l-0.268-0.196q3.286 2.679 7.464 2.679 2.357 0 4.571-0.929zM14.982 15.946q-0.375-0.875-0.946-1.982-5.554 1.661-12.018 1.661-0.018 0.125-0.018 0.375 0 2.214 0.786 4.223t2.214 3.598q0.893-1.589 2.205-2.973t2.545-2.223 2.33-1.446 1.777-0.857l0.661-0.232q0.071-0.018 0.232-0.063t0.232-0.080zM13.071 12.161q-2.143-3.804-4.357-6.75-2.464 1.161-4.179 3.321t-2.286 4.857q5.393 0 10.821-1.429zM25.286 17.857q-3.75-1.071-7.304-0.518 1.554 4.268 2.286 8.375 1.982-1.339 3.304-3.384t1.714-4.473zM10.911 4.625q-0.018 0-0.036 0.018 0.018-0.018 0.036-0.018zM21.446 7.214q-3.304-2.929-7.732-2.929-1.357 0-2.768 0.339 2.339 3.036 4.393 6.821 1.232-0.464 2.321-1.080t1.723-1.098 1.17-1.018 0.67-0.723zM25.429 15.875q-0.054-4.143-2.661-7.321l-0.018 0.018q-0.161 0.214-0.339 0.438t-0.777 0.795-1.268 1.080-1.786 1.161-2.348 1.152q0.446 0.946 0.786 1.696 0.036 0.107 0.116 0.313t0.134 0.295q0.643-0.089 1.33-0.125t1.313-0.036 1.232 0.027 1.143 0.071 1.009 0.098 0.857 0.116 0.652 0.107 0.446 0.080zM27.429 16q0 3.732-1.839 6.884t-4.991 4.991-6.884 1.839-6.884-1.839-4.991-4.991-1.839-6.884 1.839-6.884 4.991-4.991 6.884-1.839 6.884 1.839 4.991 4.991 1.839 6.884z"></path>
</symbol>
<symbol id="icon-skype" viewBox="0 0 27 32">
<path class="path1" d="M20.946 18.982q0-0.893-0.348-1.634t-0.866-1.223-1.304-0.875-1.473-0.607-1.563-0.411l-1.857-0.429q-0.536-0.125-0.786-0.188t-0.625-0.205-0.536-0.286-0.295-0.375-0.134-0.536q0-1.375 2.571-1.375 0.768 0 1.375 0.214t0.964 0.509 0.679 0.598 0.714 0.518 0.857 0.214q0.839 0 1.348-0.571t0.509-1.375q0-0.982-1-1.777t-2.536-1.205-3.25-0.411q-1.214 0-2.357 0.277t-2.134 0.839-1.589 1.554-0.598 2.295q0 1.089 0.339 1.902t1 1.348 1.429 0.866 1.839 0.58l2.607 0.643q1.607 0.393 2 0.643 0.571 0.357 0.571 1.071 0 0.696-0.714 1.152t-1.875 0.455q-0.911 0-1.634-0.286t-1.161-0.688-0.813-0.804-0.821-0.688-0.964-0.286q-0.893 0-1.348 0.536t-0.455 1.339q0 1.643 2.179 2.813t5.196 1.17q1.304 0 2.5-0.33t2.188-0.955 1.58-1.67 0.589-2.348zM27.429 22.857q0 2.839-2.009 4.848t-4.848 2.009q-2.321 0-4.179-1.429-1.375 0.286-2.679 0.286-2.554 0-4.884-0.991t-4.018-2.679-2.679-4.018-0.991-4.884q0-1.304 0.286-2.679-1.429-1.857-1.429-4.179 0-2.839 2.009-4.848t4.848-2.009q2.321 0 4.179 1.429 1.375-0.286 2.679-0.286 2.554 0 4.884 0.991t4.018 2.679 2.679 4.018 0.991 4.884q0 1.304-0.286 2.679 1.429 1.857 1.429 4.179z"></path>
</symbol>
<symbol id="icon-foursquare" viewBox="0 0 23 32">
<path class="path1" d="M17.857 7.75l0.661-3.464q0.089-0.411-0.161-0.714t-0.625-0.304h-12.714q-0.411 0-0.688 0.304t-0.277 0.661v19.661q0 0.125 0.107 0.018l5.196-6.286q0.411-0.464 0.679-0.598t0.857-0.134h4.268q0.393 0 0.661-0.259t0.321-0.527q0.429-2.321 0.661-3.411 0.071-0.375-0.205-0.714t-0.652-0.339h-5.25q-0.518 0-0.857-0.339t-0.339-0.857v-0.75q0-0.518 0.339-0.848t0.857-0.33h6.179q0.321 0 0.625-0.241t0.357-0.527zM21.911 3.786q-0.268 1.304-0.955 4.759t-1.241 6.25-0.625 3.098q-0.107 0.393-0.161 0.58t-0.25 0.58-0.438 0.589-0.688 0.375-1.036 0.179h-4.839q-0.232 0-0.393 0.179-0.143 0.161-7.607 8.821-0.393 0.446-1.045 0.509t-0.866-0.098q-0.982-0.393-0.982-1.75v-25.179q0-0.982 0.679-1.83t2.143-0.848h15.857q1.696 0 2.268 0.946t0.179 2.839zM21.911 3.786l-2.821 14.107q0.071-0.304 0.625-3.098t1.241-6.25 0.955-4.759z"></path>
</symbol>
<symbol id="icon-wordpress" viewBox="0 0 32 32">
<path class="path1" d="M2.268 16q0-2.911 1.196-5.589l6.554 17.946q-3.5-1.696-5.625-5.018t-2.125-7.339zM25.268 15.304q0 0.339-0.045 0.688t-0.179 0.884-0.205 0.786-0.313 1.054-0.313 1.036l-1.357 4.571-4.964-14.75q0.821-0.054 1.571-0.143 0.339-0.036 0.464-0.33t-0.045-0.554-0.509-0.241l-3.661 0.179q-1.339-0.018-3.607-0.179-0.214-0.018-0.366 0.089t-0.205 0.268-0.027 0.33 0.161 0.295 0.348 0.143l1.429 0.143 2.143 5.857-3 9-5-14.857q0.821-0.054 1.571-0.143 0.339-0.036 0.464-0.33t-0.045-0.554-0.509-0.241l-3.661 0.179q-0.125 0-0.411-0.009t-0.464-0.009q1.875-2.857 4.902-4.527t6.563-1.67q2.625 0 5.009 0.946t4.259 2.661h-0.179q-0.982 0-1.643 0.723t-0.661 1.705q0 0.214 0.036 0.429t0.071 0.384 0.143 0.411 0.161 0.375 0.214 0.402 0.223 0.375 0.259 0.429 0.25 0.411q1.125 1.911 1.125 3.786zM16.232 17.196l4.232 11.554q0.018 0.107 0.089 0.196-2.25 0.786-4.554 0.786-2 0-3.875-0.571zM28.036 9.411q1.696 3.107 1.696 6.589 0 3.732-1.857 6.884t-4.982 4.973l4.196-12.107q1.054-3.018 1.054-4.929 0-0.75-0.107-1.411zM16 0q3.25 0 6.214 1.268t5.107 3.411 3.411 5.107 1.268 6.214-1.268 6.214-3.411 5.107-5.107 3.411-6.214 1.268-6.214-1.268-5.107-3.411-3.411-5.107-1.268-6.214 1.268-6.214 3.411-5.107 5.107-3.411 6.214-1.268zM16 31.268q3.089 0 5.92-1.214t4.875-3.259 3.259-4.875 1.214-5.92-1.214-5.92-3.259-4.875-4.875-3.259-5.92-1.214-5.92 1.214-4.875 3.259-3.259 4.875-1.214 5.92 1.214 5.92 3.259 4.875 4.875 3.259 5.92 1.214z"></path>
</symbol>
<symbol id="icon-stumbleupon" viewBox="0 0 34 32">
<path class="path1" d="M18.964 12.714v-2.107q0-0.75-0.536-1.286t-1.286-0.536-1.286 0.536-0.536 1.286v10.929q0 3.125-2.25 5.339t-5.411 2.214q-3.179 0-5.42-2.241t-2.241-5.42v-4.75h5.857v4.679q0 0.768 0.536 1.295t1.286 0.527 1.286-0.527 0.536-1.295v-11.071q0-3.054 2.259-5.214t5.384-2.161q3.143 0 5.393 2.179t2.25 5.25v2.429l-3.482 1.036zM28.429 16.679h5.857v4.75q0 3.179-2.241 5.42t-5.42 2.241q-3.161 0-5.411-2.223t-2.25-5.366v-4.786l2.339 1.089 3.482-1.036v4.821q0 0.75 0.536 1.277t1.286 0.527 1.286-0.527 0.536-1.277v-4.911z"></path>
</symbol>
<symbol id="icon-digg" viewBox="0 0 37 32">
<path class="path1" d="M5.857 5.036h3.643v17.554h-9.5v-12.446h5.857v-5.107zM5.857 19.661v-6.589h-2.196v6.589h2.196zM10.964 10.143v12.446h3.661v-12.446h-3.661zM10.964 5.036v3.643h3.661v-3.643h-3.661zM16.089 10.143h9.518v16.821h-9.518v-2.911h5.857v-1.464h-5.857v-12.446zM21.946 19.661v-6.589h-2.196v6.589h2.196zM27.071 10.143h9.5v16.821h-9.5v-2.911h5.839v-1.464h-5.839v-12.446zM32.911 19.661v-6.589h-2.196v6.589h2.196z"></path>
</symbol>
<symbol id="icon-spotify" viewBox="0 0 27 32">
<path class="path1" d="M20.125 21.607q0-0.571-0.536-0.911-3.446-2.054-7.982-2.054-2.375 0-5.125 0.607-0.75 0.161-0.75 0.929 0 0.357 0.241 0.616t0.634 0.259q0.089 0 0.661-0.143 2.357-0.482 4.339-0.482 4.036 0 7.089 1.839 0.339 0.196 0.589 0.196 0.339 0 0.589-0.241t0.25-0.616zM21.839 17.768q0-0.714-0.625-1.089-4.232-2.518-9.786-2.518-2.732 0-5.411 0.75-0.857 0.232-0.857 1.143 0 0.446 0.313 0.759t0.759 0.313q0.125 0 0.661-0.143 2.179-0.589 4.482-0.589 4.982 0 8.714 2.214 0.429 0.232 0.679 0.232 0.446 0 0.759-0.313t0.313-0.759zM23.768 13.339q0-0.839-0.714-1.25-2.25-1.304-5.232-1.973t-6.125-0.67q-3.643 0-6.5 0.839-0.411 0.125-0.688 0.455t-0.277 0.866q0 0.554 0.366 0.929t0.92 0.375q0.196 0 0.714-0.143 2.375-0.661 5.482-0.661 2.839 0 5.527 0.607t4.527 1.696q0.375 0.214 0.714 0.214 0.518 0 0.902-0.366t0.384-0.92zM27.429 16q0 3.732-1.839 6.884t-4.991 4.991-6.884 1.839-6.884-1.839-4.991-4.991-1.839-6.884 1.839-6.884 4.991-4.991 6.884-1.839 6.884 1.839 4.991 4.991 1.839 6.884z"></path>
</symbol>
<symbol id="icon-soundcloud" viewBox="0 0 41 32">
<path class="path1" d="M14 24.5l0.286-4.304-0.286-9.339q-0.018-0.179-0.134-0.304t-0.295-0.125q-0.161 0-0.286 0.125t-0.125 0.304l-0.25 9.339 0.25 4.304q0.018 0.179 0.134 0.295t0.277 0.116q0.393 0 0.429-0.411zM19.286 23.982l0.196-3.768-0.214-10.464q0-0.286-0.232-0.429-0.143-0.089-0.286-0.089t-0.286 0.089q-0.232 0.143-0.232 0.429l-0.018 0.107-0.179 10.339q0 0.018 0.196 4.214v0.018q0 0.179 0.107 0.304 0.161 0.196 0.411 0.196 0.196 0 0.357-0.161 0.161-0.125 0.161-0.357zM0.625 17.911l0.357 2.286-0.357 2.25q-0.036 0.161-0.161 0.161t-0.161-0.161l-0.304-2.25 0.304-2.286q0.036-0.161 0.161-0.161t0.161 0.161zM2.161 16.5l0.464 3.696-0.464 3.625q-0.036 0.161-0.179 0.161-0.161 0-0.161-0.179l-0.411-3.607 0.411-3.696q0-0.161 0.161-0.161 0.143 0 0.179 0.161zM3.804 15.821l0.446 4.375-0.446 4.232q0 0.196-0.196 0.196-0.179 0-0.214-0.196l-0.375-4.232 0.375-4.375q0.036-0.214 0.214-0.214 0.196 0 0.196 0.214zM5.482 15.696l0.411 4.5-0.411 4.357q-0.036 0.232-0.25 0.232-0.232 0-0.232-0.232l-0.375-4.357 0.375-4.5q0-0.232 0.232-0.232 0.214 0 0.25 0.232zM7.161 16.018l0.375 4.179-0.375 4.393q-0.036 0.286-0.286 0.286-0.107 0-0.188-0.080t-0.080-0.205l-0.357-4.393 0.357-4.179q0-0.107 0.080-0.188t0.188-0.080q0.25 0 0.286 0.268zM8.839 13.411l0.375 6.786-0.375 4.393q0 0.125-0.089 0.223t-0.214 0.098q-0.286 0-0.321-0.321l-0.321-4.393 0.321-6.786q0.036-0.321 0.321-0.321 0.125 0 0.214 0.098t0.089 0.223zM10.518 11.875l0.339 8.357-0.339 4.357q0 0.143-0.098 0.241t-0.241 0.098q-0.321 0-0.357-0.339l-0.286-4.357 0.286-8.357q0.036-0.339 0.357-0.339 0.143 0 0.241 0.098t0.098 0.241zM12.268 11.161l0.321 9.036-0.321 4.321q-0.036 0.375-0.393 0.375-0.339 0-0.375-0.375l-0.286-4.321 0.286-9.036q0-0.161 0.116-0.277t0.259-0.116q0.161 0 0.268 0.116t0.125 0.277zM19.268 24.411v0 0zM15.732 11.089l0.268 9.107-0.268 4.268q0 0.179-0.134 0.313t-0.313 0.134-0.304-0.125-0.143-0.321l-0.25-4.268 0.25-9.107q0-0.196 0.134-0.321t0.313-0.125 0.313 0.125 0.134 0.321zM17.5 11.429l0.25 8.786-0.25 4.214q0 0.196-0.143 0.339t-0.339 0.143-0.339-0.143-0.161-0.339l-0.214-4.214 0.214-8.786q0.018-0.214 0.161-0.357t0.339-0.143 0.33 0.143 0.152 0.357zM21.286 20.214l-0.25 4.125q0 0.232-0.161 0.393t-0.393 0.161-0.393-0.161-0.179-0.393l-0.107-2.036-0.107-2.089 0.214-11.357v-0.054q0.036-0.268 0.214-0.429 0.161-0.125 0.357-0.125 0.143 0 0.268 0.089 0.25 0.143 0.286 0.464zM41.143 19.875q0 2.089-1.482 3.563t-3.571 1.473h-14.036q-0.232-0.036-0.393-0.196t-0.161-0.393v-16.054q0-0.411 0.5-0.589 1.518-0.607 3.232-0.607 3.482 0 6.036 2.348t2.857 5.777q0.946-0.393 1.964-0.393 2.089 0 3.571 1.482t1.482 3.589z"></path>
</symbol>
<symbol id="icon-codepen" viewBox="0 0 32 32">
<path class="path1" d="M3.857 20.875l10.768 7.179v-6.411l-5.964-3.982zM2.75 18.304l3.446-2.304-3.446-2.304v4.607zM17.375 28.054l10.768-7.179-4.804-3.214-5.964 3.982v6.411zM16 19.25l4.857-3.25-4.857-3.25-4.857 3.25zM8.661 14.339l5.964-3.982v-6.411l-10.768 7.179zM25.804 16l3.446 2.304v-4.607zM23.339 14.339l4.804-3.214-10.768-7.179v6.411zM32 11.125v9.75q0 0.732-0.607 1.143l-14.625 9.75q-0.375 0.232-0.768 0.232t-0.768-0.232l-14.625-9.75q-0.607-0.411-0.607-1.143v-9.75q0-0.732 0.607-1.143l14.625-9.75q0.375-0.232 0.768-0.232t0.768 0.232l14.625 9.75q0.607 0.411 0.607 1.143z"></path>
</symbol>
<symbol id="icon-twitch" viewBox="0 0 32 32">
<path class="path1" d="M16 7.75v7.75h-2.589v-7.75h2.589zM23.107 7.75v7.75h-2.589v-7.75h2.589zM23.107 21.321l4.518-4.536v-14.196h-21.321v18.732h5.821v3.875l3.875-3.875h7.107zM30.214 0v18.089l-7.75 7.75h-5.821l-3.875 3.875h-3.875v-3.875h-7.107v-20.679l1.946-5.161h26.482z"></path>
</symbol>
<symbol id="icon-meanpath" viewBox="0 0 27 32">
<path class="path1" d="M23.411 15.036v2.036q0 0.429-0.241 0.679t-0.67 0.25h-3.607q-0.429 0-0.679-0.25t-0.25-0.679v-2.036q0-0.429 0.25-0.679t0.679-0.25h3.607q0.429 0 0.67 0.25t0.241 0.679zM14.661 19.143v-4.464q0-0.946-0.58-1.527t-1.527-0.58h-2.375q-1.214 0-1.714 0.929-0.5-0.929-1.714-0.929h-2.321q-0.946 0-1.527 0.58t-0.58 1.527v4.464q0 0.393 0.375 0.393h0.982q0.393 0 0.393-0.393v-4.107q0-0.429 0.241-0.679t0.688-0.25h1.679q0.429 0 0.679 0.25t0.25 0.679v4.107q0 0.393 0.375 0.393h0.964q0.393 0 0.393-0.393v-4.107q0-0.429 0.25-0.679t0.679-0.25h1.732q0.429 0 0.67 0.25t0.241 0.679v4.107q0 0.393 0.393 0.393h0.982q0.375 0 0.375-0.393zM25.179 17.429v-2.75q0-0.946-0.589-1.527t-1.536-0.58h-4.714q-0.946 0-1.536 0.58t-0.589 1.527v7.321q0 0.375 0.393 0.375h0.982q0.375 0 0.375-0.375v-3.214q0.554 0.75 1.679 0.75h3.411q0.946 0 1.536-0.58t0.589-1.527zM27.429 6.429v19.143q0 1.714-1.214 2.929t-2.929 1.214h-19.143q-1.714 0-2.929-1.214t-1.214-2.929v-19.143q0-1.714 1.214-2.929t2.929-1.214h19.143q1.714 0 2.929 1.214t1.214 2.929z"></path>
</symbol>
<symbol id="icon-pinterest-p" viewBox="0 0 23 32">
<path class="path1" d="M0 10.661q0-1.929 0.67-3.634t1.848-2.973 2.714-2.196 3.304-1.393 3.607-0.464q2.821 0 5.25 1.188t3.946 3.455 1.518 5.125q0 1.714-0.339 3.357t-1.071 3.161-1.786 2.67-2.589 1.839-3.375 0.688q-1.214 0-2.411-0.571t-1.714-1.571q-0.179 0.696-0.5 2.009t-0.42 1.696-0.366 1.268-0.464 1.268-0.571 1.116-0.821 1.384-1.107 1.545l-0.25 0.089-0.161-0.179q-0.268-2.804-0.268-3.357 0-1.643 0.384-3.688t1.188-5.134 0.929-3.625q-0.571-1.161-0.571-3.018 0-1.482 0.929-2.786t2.357-1.304q1.089 0 1.696 0.723t0.607 1.83q0 1.179-0.786 3.411t-0.786 3.339q0 1.125 0.804 1.866t1.946 0.741q0.982 0 1.821-0.446t1.402-1.214 1-1.696 0.679-1.973 0.357-1.982 0.116-1.777q0-3.089-1.955-4.813t-5.098-1.723q-3.571 0-5.964 2.313t-2.393 5.866q0 0.786 0.223 1.518t0.482 1.161 0.482 0.813 0.223 0.545q0 0.5-0.268 1.304t-0.661 0.804q-0.036 0-0.304-0.054-0.911-0.268-1.616-1t-1.089-1.688-0.58-1.929-0.196-1.902z"></path>
</symbol>
<symbol id="icon-periscope" viewBox="0 0 24 28">
<path class="path1" d="M12.285,1C6.696,1,2.277,5.643,2.277,11.243c0,5.851,7.77,14.578,10.007,14.578c1.959,0,9.729-8.728,9.729-14.578 C22.015,5.643,17.596,1,12.285,1z M12.317,16.551c-3.473,0-6.152-2.611-6.152-5.664c0-1.292,0.39-2.472,1.065-3.438 c0.206,1.084,1.18,1.906,2.352,1.906c1.322,0,2.393-1.043,2.393-2.333c0-0.832-0.447-1.561-1.119-1.975 c0.467-0.105,0.955-0.161,1.46-0.161c3.133,0,5.81,2.611,5.81,5.998C18.126,13.94,15.449,16.551,12.317,16.551z"></path>
</symbol>
<symbol id="icon-get-pocket" viewBox="0 0 31 32">
<path class="path1" d="M27.946 2.286q1.161 0 1.964 0.813t0.804 1.973v9.268q0 3.143-1.214 6t-3.259 4.911-4.893 3.259-5.973 1.205q-3.143 0-5.991-1.205t-4.902-3.259-3.268-4.911-1.214-6v-9.268q0-1.143 0.821-1.964t1.964-0.821h25.161zM15.375 21.286q0.839 0 1.464-0.589l7.214-6.929q0.661-0.625 0.661-1.518 0-0.875-0.616-1.491t-1.491-0.616q-0.839 0-1.464 0.589l-5.768 5.536-5.768-5.536q-0.625-0.589-1.446-0.589-0.875 0-1.491 0.616t-0.616 1.491q0 0.911 0.643 1.518l7.232 6.929q0.589 0.589 1.446 0.589z"></path>
</symbol>
<symbol id="icon-vimeo" viewBox="0 0 32 32">
<path class="path1" d="M30.518 9.25q-0.179 4.214-5.929 11.625-5.946 7.696-10.036 7.696-2.536 0-4.286-4.696-0.786-2.857-2.357-8.607-1.286-4.679-2.804-4.679-0.321 0-2.268 1.357l-1.375-1.75q0.429-0.375 1.929-1.723t2.321-2.063q2.786-2.464 4.304-2.607 1.696-0.161 2.732 0.991t1.446 3.634q0.786 5.125 1.179 6.661 0.982 4.446 2.143 4.446 0.911 0 2.75-2.875 1.804-2.875 1.946-4.393 0.232-2.482-1.946-2.482-1.018 0-2.161 0.464 2.143-7.018 8.196-6.821 4.482 0.143 4.214 5.821z"></path>
</symbol>
<symbol id="icon-reddit-alien" viewBox="0 0 32 32">
<path class="path1" d="M32 15.107q0 1.036-0.527 1.884t-1.42 1.295q0.214 0.821 0.214 1.714 0 2.768-1.902 5.125t-5.188 3.723-7.143 1.366-7.134-1.366-5.179-3.723-1.902-5.125q0-0.839 0.196-1.679-0.911-0.446-1.464-1.313t-0.554-1.902q0-1.464 1.036-2.509t2.518-1.045q1.518 0 2.589 1.125 3.893-2.714 9.196-2.893l2.071-9.304q0.054-0.232 0.268-0.375t0.464-0.089l6.589 1.446q0.321-0.661 0.964-1.063t1.411-0.402q1.107 0 1.893 0.777t0.786 1.884-0.786 1.893-1.893 0.786-1.884-0.777-0.777-1.884l-5.964-1.321-1.857 8.429q5.357 0.161 9.268 2.857 1.036-1.089 2.554-1.089 1.482 0 2.518 1.045t1.036 2.509zM7.464 18.661q0 1.107 0.777 1.893t1.884 0.786 1.893-0.786 0.786-1.893-0.786-1.884-1.893-0.777q-1.089 0-1.875 0.786t-0.786 1.875zM21.929 25q0.196-0.196 0.196-0.464t-0.196-0.464q-0.179-0.179-0.446-0.179t-0.464 0.179q-0.732 0.75-2.161 1.107t-2.857 0.357-2.857-0.357-2.161-1.107q-0.196-0.179-0.464-0.179t-0.446 0.179q-0.196 0.179-0.196 0.455t0.196 0.473q0.768 0.768 2.116 1.214t2.188 0.527 1.625 0.080 1.625-0.080 2.188-0.527 2.116-1.214zM21.875 21.339q1.107 0 1.884-0.786t0.777-1.893q0-1.089-0.786-1.875t-1.875-0.786q-1.107 0-1.893 0.777t-0.786 1.884 0.786 1.893 1.893 0.786z"></path>
</symbol>
<symbol id="icon-whatsapp" viewBox="0 0 32 32">
<path d="M15.968 2.003a14.03 13.978 0 0 0-14.03 13.978 14.03 13.978 0 0 0 2.132 7.391L1.938 29.96l6.745-2.052a14.03 13.978 0 0 0 7.285 2.052 14.03 13.978 0 0 0 14.03-13.978 14.03 13.978 0 0 0-14.03-13.978z" stroke-width=".2000562"/>
<path d="M10.454 8.236a2.57 3.401 51.533 0 0-1.475 3.184v.015c.01 2.04 4.045 10.076 10.017 12.688l.017-.013a2.57 3.401 51.533 0 0 3.454-.706 2.57 3.401 51.533 0 0 1.064-4.129 2.57 3.401 51.533 0 0-4.262.103 2.57 3.401 51.533 0 0-.505.473c-1.346-.639-2.952-1.463-4.168-2.98-.771-.962-1.257-2.732-1.549-4.206a2.57 3.401 51.533 0 0 .605-.403 2.57 3.401 51.533 0 0 1.064-4.129 2.57 3.401 51.533 0 0-4.262.103z" stroke-width=".372"/>
</symbol>
<symbol id="icon-telegram" viewBox="0 0 32 32">
<path d="M30.8,2.2L0.6,13.9c-0.8,0.3-0.7,1.3,0,1.6l7.4,2.8l2.9,9.2c0.2,0.6,0.9,0.8,1.4,0.4l4.1-3.4 c0.4-0.4,1-0.4,1.5,0l7.4,5.4c0.5,0.4,1.2,0.1,1.4-0.5L32,3.2C32.1,2.5,31.4,1.9,30.8,2.2z M25,8.3l-11.9,11 c-0.4,0.4-0.7,0.9-0.8,1.5l-0.4,3c-0.1,0.4-0.6,0.4-0.7,0.1l-1.6-5.5c-0.2-0.6,0.1-1.3,0.6-1.6l14.4-8.9C25,7.7,25.3,8.1,25,8.3z"/>
</symbol>
<symbol id="icon-hashtag" viewBox="0 0 32 32">
<path class="path1" d="M17.696 18.286l1.143-4.571h-4.536l-1.143 4.571h4.536zM31.411 9.286l-1 4q-0.125 0.429-0.554 0.429h-5.839l-1.143 4.571h5.554q0.268 0 0.446 0.214 0.179 0.25 0.107 0.5l-1 4q-0.089 0.429-0.554 0.429h-5.839l-1.446 5.857q-0.125 0.429-0.554 0.429h-4q-0.286 0-0.464-0.214-0.161-0.214-0.107-0.5l1.393-5.571h-4.536l-1.446 5.857q-0.125 0.429-0.554 0.429h-4.018q-0.268 0-0.446-0.214-0.161-0.214-0.107-0.5l1.393-5.571h-5.554q-0.268 0-0.446-0.214-0.161-0.214-0.107-0.5l1-4q0.125-0.429 0.554-0.429h5.839l1.143-4.571h-5.554q-0.268 0-0.446-0.214-0.179-0.25-0.107-0.5l1-4q0.089-0.429 0.554-0.429h5.839l1.446-5.857q0.125-0.429 0.571-0.429h4q0.268 0 0.446 0.214 0.161 0.214 0.107 0.5l-1.393 5.571h4.536l1.446-5.857q0.125-0.429 0.571-0.429h4q0.268 0 0.446 0.214 0.161 0.214 0.107 0.5l-1.393 5.571h5.554q0.268 0 0.446 0.214 0.161 0.214 0.107 0.5z"></path>
</symbol>
<symbol id="icon-chain" viewBox="0 0 30 32">
<path class="path1" d="M26 21.714q0-0.714-0.5-1.214l-3.714-3.714q-0.5-0.5-1.214-0.5-0.75 0-1.286 0.571 0.054 0.054 0.339 0.33t0.384 0.384 0.268 0.339 0.232 0.455 0.063 0.491q0 0.714-0.5 1.214t-1.214 0.5q-0.268 0-0.491-0.063t-0.455-0.232-0.339-0.268-0.384-0.384-0.33-0.339q-0.589 0.554-0.589 1.304 0 0.714 0.5 1.214l3.679 3.696q0.482 0.482 1.214 0.482 0.714 0 1.214-0.464l2.625-2.607q0.5-0.5 0.5-1.196zM13.446 9.125q0-0.714-0.5-1.214l-3.679-3.696q-0.5-0.5-1.214-0.5-0.696 0-1.214 0.482l-2.625 2.607q-0.5 0.5-0.5 1.196 0 0.714 0.5 1.214l3.714 3.714q0.482 0.482 1.214 0.482 0.75 0 1.286-0.554-0.054-0.054-0.339-0.33t-0.384-0.384-0.268-0.339-0.232-0.455-0.063-0.491q0-0.714 0.5-1.214t1.214-0.5q0.268 0 0.491 0.063t0.455 0.232 0.339 0.268 0.384 0.384 0.33 0.339q0.589-0.554 0.589-1.304zM29.429 21.714q0 2.143-1.518 3.625l-2.625 2.607q-1.482 1.482-3.625 1.482-2.161 0-3.643-1.518l-3.679-3.696q-1.482-1.482-1.482-3.625 0-2.196 1.571-3.732l-1.571-1.571q-1.536 1.571-3.714 1.571-2.143 0-3.643-1.5l-3.714-3.714q-1.5-1.5-1.5-3.643t1.518-3.625l2.625-2.607q1.482-1.482 3.625-1.482 2.161 0 3.643 1.518l3.679 3.696q1.482 1.482 1.482 3.625 0 2.196-1.571 3.732l1.571 1.571q1.536-1.571 3.714-1.571 2.143 0 3.643 1.5l3.714 3.714q1.5 1.5 1.5 3.643z"></path>
</symbol>
<symbol id="icon-thumb-tack" viewBox="0 0 21 32">
<path class="path1" d="M8.571 15.429v-8q0-0.25-0.161-0.411t-0.411-0.161-0.411 0.161-0.161 0.411v8q0 0.25 0.161 0.411t0.411 0.161 0.411-0.161 0.161-0.411zM20.571 21.714q0 0.464-0.339 0.804t-0.804 0.339h-7.661l-0.911 8.625q-0.036 0.214-0.188 0.366t-0.366 0.152h-0.018q-0.482 0-0.571-0.482l-1.357-8.661h-7.214q-0.464 0-0.804-0.339t-0.339-0.804q0-2.196 1.402-3.955t3.17-1.759v-9.143q-0.929 0-1.607-0.679t-0.679-1.607 0.679-1.607 1.607-0.679h11.429q0.929 0 1.607 0.679t0.679 1.607-0.679 1.607-1.607 0.679v9.143q1.768 0 3.17 1.759t1.402 3.955z"></path>
</symbol>
<symbol id="icon-arrow-left" viewBox="0 0 43 32">
<path class="path1" d="M42.311 14.044c-0.178-0.178-0.533-0.356-0.711-0.356h-33.778l10.311-10.489c0.178-0.178 0.356-0.533 0.356-0.711 0-0.356-0.178-0.533-0.356-0.711l-1.6-1.422c-0.356-0.178-0.533-0.356-0.889-0.356s-0.533 0.178-0.711 0.356l-14.578 14.933c-0.178 0.178-0.356 0.533-0.356 0.711s0.178 0.533 0.356 0.711l14.756 14.933c0 0.178 0.356 0.356 0.533 0.356s0.533-0.178 0.711-0.356l1.6-1.6c0.178-0.178 0.356-0.533 0.356-0.711s-0.178-0.533-0.356-0.711l-10.311-10.489h33.778c0.178 0 0.533-0.178 0.711-0.356 0.356-0.178 0.533-0.356 0.533-0.711v-2.133c0-0.356-0.178-0.711-0.356-0.889z"></path>
</symbol>
<symbol id="icon-arrow-right" viewBox="0 0 43 32">
<path class="path1" d="M0.356 17.956c0.178 0.178 0.533 0.356 0.711 0.356h33.778l-10.311 10.489c-0.178 0.178-0.356 0.533-0.356 0.711 0 0.356 0.178 0.533 0.356 0.711l1.6 1.6c0.178 0.178 0.533 0.356 0.711 0.356s0.533-0.178 0.711-0.356l14.756-14.933c0.178-0.356 0.356-0.711 0.356-0.889s-0.178-0.533-0.356-0.711l-14.756-14.933c0-0.178-0.356-0.356-0.533-0.356s-0.533 0.178-0.711 0.356l-1.6 1.6c-0.178 0.178-0.356 0.533-0.356 0.711s0.178 0.533 0.356 0.711l10.311 10.489h-33.778c-0.178 0-0.533 0.178-0.711 0.356-0.356 0.178-0.533 0.356-0.533 0.711v2.311c0 0.178 0.178 0.533 0.356 0.711z"></path>
</symbol>
<symbol id="icon-play" viewBox="0 0 22 28">
<path d="M21.625 14.484l-20.75 11.531c-0.484 0.266-0.875 0.031-0.875-0.516v-23c0-0.547 0.391-0.781 0.875-0.516l20.75 11.531c0.484 0.266 0.484 0.703 0 0.969z"></path>
</symbol>
<symbol id="icon-pause" viewBox="0 0 24 28">
<path d="M24 3v22c0 0.547-0.453 1-1 1h-8c-0.547 0-1-0.453-1-1v-22c0-0.547 0.453-1 1-1h8c0.547 0 1 0.453 1 1zM10 3v22c0 0.547-0.453 1-1 1h-8c-0.547 0-1-0.453-1-1v-22c0-0.547 0.453-1 1-1h8c0.547 0 1 0.453 1 1z"></path>
</symbol>
</defs>
</svg>

</body>
</html>
