/*
Theme Name: WP Core by Johan
Author: Johan Öhrvall
Description: A base for building custom WordPress sites
Text Domain: wp-core-by-johan
*/

:root {
	--font-family-1: "neue-haas-grotesk-text", helvetica, arial, sans-serif;
	--font-family-2: "neue-haas-grotesk-display", helvetica, arial, sans-serif;
	
	--size-base: 20px;
	--size-xxs: calc( var(--size-base) / 1.62 / 1.62 / 1.62 );
	--size-xs: calc( var(--size-base) / 1.62 / 1.62 );
	--size-s: calc( var(--size-base) / 1.62 );
	--size-m: calc( var(--size-base) );
	--size-l: calc( var(--size-base) * 1.62 );
	--size-xl: calc( var(--size-base) * 1.62 * 1.62 );
	--size-xxl: calc( var(--size-base) * 1.62 * 1.62 * 1.62 );
	--size-xxxl: calc( var(--size-xxl) + var(--size-s) );
	
	--color-dark: #000000;
	--color-darkgrey: #1d1d1d;
	--color-light: #ffffff;
	--color-splash: #BED35C;
	--color-splash: #56a23e;
	
	--gradient-dark: linear-gradient( to bottom, #111, #0f0f0f );
	
	--inner-wide: 770px;
	--inner-narrow: 585px; /* 625px */
	--inner-slim: 535px;
}

/* General body styling */
body {
	font-family: var(--font-family-1);
	font-size: var(--size-m);
	color: var(--color-light);
	margin: 0;
	padding: 0 var(--size-xxl) var(--size-xxl) var(--size-xxl);
	padding: var(--size-xxl) var(--size-l) var(--size-l) var(--size-l);
	padding: 0;
	background-color: var(--color-dark);
	line-height: 1.6;
}
*{
	font-family: var(--font-family-1);
}
a{
	color: var(--color-splash);
	text-decoration: none;
}

h1{
	font-family: var(--font-family-2);
	font-size: var(--size-xl);
	font-size: calc(var(--size-xxl) );
	line-height: 1.2;
}
h2{
	font-family: var(--font-family-2);
	font-size: var(--size-l);
	margin-bottom: var(--size-xs);
}
h2 + p{
	margin-top: var(--size-xs);
}
h2.thin{
	font-weight: 300;
}
h3{
	font-family: var(--font-family-2);
	font-size: var(--size-l);
}
h4{
	font-family: var(--font-family-2);
	font-size: var(--size-m);
	margin-bottom: var(--size-xs);
}
h4 + p{
	margin-top: var(--size-xs);
}

.container {
	max-width: var(--inner-narrow);
	margin: 0 auto;
	padding: var(--size-m);
}
.container + .container{
	margin-top: var(--size-l);
}
.inner{
	max-width: var(--inner-narrow);
	margin: 0 auto;	
}
.inner-wide{
	max-width: var(--inner-wide);
	margin: 0 auto;	
}
.inner-slim{
	max-width: var(--inner-slim);
	margin: 0 auto;	
}

.btn{
	padding: var(--size-s) var(--size-m);
	border-radius: var(--size-xl);
	background: rgba(86, 162, 62, 0.62);
	color: var(--color-light);
	font-weight: 300;
	font-family: var(--font-family-2);
	transition: 0.2s;
	
	background: transparent;
	color: var(--color-splash);
	border: 2px solid var(--color-splash);
}
.btn:hover{
	color: var(--color-dark);
	background: var(--color-splash);
}
.btn.green{
	border-radius: var(--size-xxl);
	border-color: var(--color-splash);
	color: var(--color-splash);
	font-weight: 300;
}
.btn.green:hover{
	background: var(--color-splash);
	color: var(--color-dark);
}
.btn.white{
	border-radius: var(--size-xxl);
	border-color: var(--color-light);
	color: var(--color-light);
	font-weight: 300;
}
.btn.white:hover{
	background: var(--color-light);
	color: var(--color-dark);
}
.btn.small{
	padding: var(--size-xs) var(--size-l);
	color: var(--color-dark);
	background: var(--color-light);
}

.block{
	border-radius: var(--size-xs);
	padding: var(--size-l);
	background: var(--gradient-dark);
	background: var(--color-darkgrey);
	margin-bottom: var(--size-m);
}

.wp-block-separator{
	border-top: 1px solid rgba(0,0,0,0.15);
	margin: var(--size-l) 0;
}
.wp-block-quote{
	color: var(--color-splash);
	border-left: var(--size-xxs) solid var(--color-splash);
	marign-left: 0px !important;
	margin-inline-start: 0px !important;
	padding-left: var(--size-l);
	font-weight: 300;
}
.wp-block-list li{
	margin-bottom: var(--size-s);
}

.aligncenter{
	text-align: center;
}
img.aligncenter{
	margin-left: auto;
	margin-right: auto;
	position: relative;
	display: block;
}

/* Header and navigation */
header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
	transition: 0.2s;
	background: linear-gradient(to bottom, var(--color-dark), rgba(0,0,0,0));
}
#logo{
	position: relative;
	height: var(--size-l);
	width: calc(var(--size-xxl) * 2);
	display: block;
	padding: var(--size-l) 0;
	transition: 0.2s;
	margin: 0 auto;
}
#logo img{
	height: 100%;
	width: auto;
	margin: 0 auto;
	position: relative;
	display: block;
}
#anmalan-btn{
	position: absolute;
	top: var(--size-l);
	right: var(--size-l);
	padding: var(--size-xs) var(--size-m);
	border-radius: var(--size-xl);
	background: rgba(86, 162, 62, 0.62);
	color: var(--color-light);
	font-weight: 300;
	font-family: var(--font-family-2);
	transition: 0.2s;
	
	background: transparent;
	color: var(--color-splash);
	border: 2px solid var(--color-splash);
}
#anmalan-btn:hover{
	background: var(--color-splash);
	color: var(--color-dark);
}
#menu-btn{
	position: absolute;
	top: var(--size-l);
	left: var(--size-l);
	display: block;
	border: none;
	background: none;
	width: var(--size-l);
	height: var(--size-l);
	padding: 0;
}
#menu-btn div{
	width: 100%;
	height: var(--size-xxs);
	background: var(--color-light);
	position: absolute;
	border-radius: 2px;
	transition: 0.2s;
}
#menu-btn div:nth-child(1){
	top: 0;
}
#menu-btn div:nth-child(2){
	top: calc( 50% - (var(--size-xxs) * 0.5) );
}
#menu-btn div:nth-child(3){
	bottom: 0;
	width: 70%;
}
#menu-btn.open div:nth-child(1){
	rotate: 45deg;
	top: var(--size-xs);
}
#menu-btn.open div:nth-child(2){
	rotate: -45deg;	
	top: var(--size-xs);
}
#menu-btn.open div:nth-child(3){
	opacity: 0;
}

.main-navigation{
	width: auto;
	text-align: left;
	padding: var(--size-m) 0;
	display: none;
	background: var(--color-splash);
	background: transparent;
	position: absolute;
	top: calc(var(--size-xxl) - var(--size-s));
	left: var(--size-xl);
	width: calc( 100% - var(--size-xl) - var(--size-xl) );
	max-width: var(--inner-slim);
	
	background: rgba(86, 162, 62, 0.9);
	padding-left: var(--size-l);
	border-radius: var(--size-s);
}
.main-navigation ul{
	list-style: none;
	padding: 0;
}
.main-navigation ul li{
	width: auto;
	display: inline-block;
	margin: 0 var(--size-xs) var(--size-xs) 0;
}
.main-navigation ul li a{
	width: auto;
	text-align: right;
	display: block;
	padding: var(--size-xxs) var(--size-s);
	color: var(--color-light);
	background: var(--gradient-dark);
	border-radius: var(--size-xs);
	border: 1px solid #111;
}
.main-navigation ul li a:hover{
	background: var(--color-light);
	border-color: var(--color-light);
	color: var(--color-dark);
}
.main-navigation ul.sub-menu{
	display: block;
	position: relative;
	width: 100%;
	top: 0;
	background: none;
	padding: var(--size-s) 0 0 0;
}
.main-navigation ul.sub-menu li{
	width: 100%;
	text-align: center;
	display: block;
	
}
.main-navigation ul.sub-menu li a{
	width: 100%;
	text-align: center;
	display: block;
	padding: var(--size-xxs) 0;
	opacity: 0.4;
}
/*
.main-navigation {
	text-align: center;
}

.main-navigation ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	text-align: right;
}

.main-navigation ul li {
	display: inline;
	margin: 0 15px;
	position: relative;
}

.main-navigation ul li a {
	text-decoration: none;
	color: var(--color-light);
	font-weight: 400;
	padding: var(--size-l) 0;
}

.main-navigation ul li a:hover {
	color: var(--color-splash);
}

.main-navigation ul.sub-menu{
	position: absolute;
	top: var(--size-l);
	left: 0;
	display: none;
	background: var(--color-splash);
	padding: var(--size-s);
	width: calc(var(--size-xxxl) * 1.62);
	border-radius: var(--size-xxs);
}
.main-navigation ul.sub-menu li{
	width: 100%;
	display: block;
	margin: 0;
}
.main-navigation ul.sub-menu li a{
	color: var(--color-splash);
	width: 100%;
	display: block;
	padding: 0;
	text-align: left;
	margin-bottom: var(--size-s);
	line-height: 1.2;
}
.main-navigation ul li:hover ul.sub-menu{
	display: block;
}
.main-navigation svg{
	height: var(--size-l);
	width: auto;
	fill: var(--color-splash);
	color: var(--color-splash);
	position: relative;
	margin-right: var(--size-xs);
	top: calc( var(--size-l) * 0.25 );
}
*/

/* */

.container img{
	max-width: 100%;
	height: auto;
}

.page-template-default,
.page-template-page-location{
	padding-top: calc(var(--size-xxl) + var(--size-s));
	padding-bottom: var(--size-l);
	background: url('images/festival.jpeg') no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	background-image: url('images/festibg.jpg');
	
	background: url('images/blurbg.png') no-repeat center center;
	background-size: cover;
}
.page-template-default .container,
.post-template-default .container,{
	background: var(--color-dark);
	
	background: url('images/blurbg.png') no-repeat center center;
	background-size: cover;
	
	background: var(--color-light);
	color: var(--color-dark);
	
	padding: var(--size-xl) var(--size-xl);
	border-radius: var(--size-xs);
	max-width: var(--inner-wide);
}
.page-template-default .container > *:first-child,
.post-template-default .container > *:first-child,
.page-template-page-location .container > *:first-child{
	margin-top: 0;
	padding-top: 0;
}

.page-template-page-location .container{
	padding: 0;
	border-radius: 0;
	background: transparent;
}
.page-template-default .container h1,
.post-template-default .container h1{
	font-size: var(--size-xl);
}
.page-template-page-location .container h1{
	margin-bottom: var(--size-m);
}
/*
.page-template-default{
	background: url('images/purp4.jpg') no-repeat center center;
	background-attachment: fixed;
	background-size: cover;
}
.page-template-default .container,
.post-template-default .container{
	margin-top: var(--size-xxl);
	margin-bottom: var(--size-xxl);
	background: var(--color-light);
	padding: var(--size-m) var(--size-l);
	border-radius: var(--size-xs);
}
.post-template-default .wp-post-image{
	width: 100%;
	height: auto;
}
.container h1:first-child{
	margin-top: var(--size-s);
	margin-bottom: var(--size-l);
}
*/

/* Home */
#home{
	background: url('images/blurbg.png') no-repeat center center;
	background-size: cover;
}
#home-welcome{
	text-align: center;
	padding: 0;
	background: none;
	position: relative;
	display: block;
	
	display: flex;
	align-items: center; /* Vertical centering */
	justify-content: center; /* Horizontal centering (optional) */
	min-height: 62vh;
}
.video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1; /* Ensures video stays in the background */
	overflow: hidden;
	object-fit: cover; /* Ensures video covers entire area without stretching */
}
#home-welcome .content{
	padding: var(--size-xl) 0;
	padding: 21vh 0;
	position: relative;
	z-index: 10;
}
#home-welcome #home-img{
	height: calc(var(--size-xxxl) * 1.62 * 1.62);
	width: auto;
	display: block;
	position: relative;
	margin: 0 auto var(--size-xl) auto;
}
#home-welcome > br{
	display: none;
}
#home-welcome h1{
	font-size: calc(var(--size-xl) + var(--size-s));
	margin-top: calc(var(--size-m) + var(--size-xs));
	margin-bottom: calc(var(--size-l) + var(--size-xs));
	color: var(--color-light);
	max-width: var(--inner-wide);
	margin-left: auto;
	margin-right: auto;
	/*
	-webkit-text-stroke-width: 2px;
	-moz-text-stroke-width: 2px;
	-webkit-text-stroke-color: var(--color-dark);
	-moz-text-stroke-color: var(--color-dark);
	color: transparent;
	text-shadow: 3px 3px var(--color-splash);
	*/
	/*
	font-weight: 300;
	line-height: 1.6;
	*/
}
#home-welcome h1 span{
	background: rgba(255,255,255,0.65);
	padding: var(--size-xs) var(--size-m);
	border-radius: var(--size-s);
}
#home-welcome .btn{
	min-width: var(--size-xxl);
	display: inline-block;
	margin-left: var(--size-xxs);
	margin-right: var(--size-xxs);
}
#home-welcome .btn:hover{
	color: var(--color-splash);
	border-color: var(--color-splash);
}


#home-welcome h2{
	font-size: calc(var(--size-xxl) );
	line-height: 1.2;
	max-width: 82vw;
	margin: 0 auto;
	display: block;
}

#home iframe{
	width: 82vw;
	height: 46vw;
	margin: 0 auto;
	position: relative;
	display: block;
	margin-bottom: var(--size-xxl);
	
	width: calc(100vw - (var(--size-l) * 2));
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

#home-video{
	width: 76vw;
	max-width: calc( var(--inner-wide) - var(--size-m) );
	height: auto;
	margin: 0 auto;
	display: block;
	position: relative;
	margin-bottom: var(--size-xxl);
	border-radius: var(--size-xs);
}

#love-logo{
	position: absolute;
	top: calc( 50% - 20vw );
	left: 0vh;
	height: auto;
	width: 100vw;
	opacity: 0.15;
}

#home-description{
	background: var(--gradient-dark);
	background: var(--color-dark);
	color: var(--color-light);
	margin-top: 0px;
	padding: var(--size-xl) 0 var(--size-xxl) 0;
	text-align: center;
	
	background: linear-gradient(to bottom, transparent, var(--color-dark));
}
#home-description p{
	font-size: var(--size-l);
	font-weight: 300;
	font-family: var(--font-family-2);
}

#location-cards{
	display: flex;
	flex-direction: row;
	gap: var(--size-m);
	max-width: var(--inner-wide);
	max-width: calc(100% - (var(--size-xxl) * 2));
	flex-wrap: wrap;
	justify-content: center;
}
.home #location-cards{
	max-width: var(--inner-wide);	
}
#location-cards > a{
	flex: 1 1 calc((100% - var(--size-m) - var(--size-m)) / 4);
	max-width: calc( (100% / 4) - var(--size-m) );
	position: relative;
	direction: block;
	background: url('images/vas.jpg') no-repeat center center;
	background-size: cover;
	filter: grayscale(50%);
	color: var(--color-light);
	font-weight: 900;
	text-align: center;
	padding: calc(var(--size-xxxl) + var(--size-l)) 0 calc(var(--size-xl) + var(--size-l)) 0;
	border-radius: var(--size-xs);
	font-size: var(--size-l);
	transition: 0.3s;
}
.home #location-cards > a{
	flex: 1 1 calc((100% - var(--size-m) - var(--size-m)) / 3);
	max-width: calc( (100% / 3) - var(--size-m) );
}
#location-cards > a span{
	width: 100%;
	display: block;
	text-transform: uppercase;
	font-size: var(--size-s);
	font-weight: 400;
}
#location-cards > a:hover{
	filter: grayscale(0%);	
}
#location-cards > a:hover span{
	text-decoration: underline;
}

#location-cards.tickets > a span{
	background: var(--color-light);
	color: var(--color-dark);
	display: inline-block;
	padding: var(--size-xs) var(--size-m);
	border-radius: 500px;
	position: relative;
	width: auto;
	max-width: auto;
	font-weight: bold;
	filter: grayscale(0%);	
}
#location-cards.tickets > a:hover span{
	text-decoration: none;
}

#home-gallery{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}
#home-gallery > div{
	width: 25%;
	aspect-ratio: 4 / 3;
	background: url('https://images.unsplash.com/photo-1506157786151-b8491531f063?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center;
	background-size: cover;
}

/* Footer */
footer {
	text-align: center;
	padding: var(--size-s);
	overflow: hidden;
	margin-top: var(--size-m);
	background: transparent;
	color: var(--color-light);
}
.home footer {
	color: var(--color-dark);
	display: none;
}
#footer-logos{
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: var(--size-l);
}
#footer-logos > a{
	vertical-align: center;
	overflow: hidden;
	display: inline-block;
}
#footer-logos img{
	max-width: 100px;
	width: 100%;
	height: auto;
}

/* Location page */
.location-ticket-headline{
	font-size: var(--size-l);
	font-weight: 300;
	margin-top: 0;
}
.cta-btn{
	position: relative;
	display: inline-block;
	padding: var(--size-s) var(--size-l);
	font-weight: 400;
	margin-bottom: var(--size-xl);
}
#location-program{
	margin: var(--size-xxxl) auto 0 auto;
	max-width: var(--inner-wide);
}
#location-program .btn{
	font-size: var(--size-m);
	border-width: 2px;
	border-radius: 200px;
	border-color: var(--color-light);
	font-weight: 300;
	margin-right: var(--size-xs);
	color: var(--color-light);
	
}
#location-program .btn:hover,
#location-program .btn.active{
	background: var(--color-light);
	color: var(--color-dark);
}
.program-day{
	display: none;
}
.program-day.active{
	display: block;
}
.program-event{
	border-bottom: 1px solid var(--color-light);
}
.event-title{
	font-weight: bold;
	margin-bottom: 0;
}
.event-time{
	margin-top: 0;
}
#location-speakers{
	display: flex;
	flex-direction: row;
	gap: var(--size-m);
	flex: 1;
	justify-content: center;
	
	width: calc(100vw - (var(--size-l) * 2));
	margin: var(--size-xl) auto;
}
.speaker{
	background: var(--color-light);
	color: var(--color-dark);
	width: 100%;
	max-width: calc(var(--inner-wide) / 1.62 / 1.62);
	max-width: 243px;
	border-radius: var(--size-s);
	padding-bottom: var(--size-s);
}
.speaker-img{
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	background: no-repeat center center;
	background-size: cover;
	border-radius: var(--size-s) var(--size-s) 0 0;
}
.speaker p{
	font-size: calc(var(--size-m) - 3px);
}
.speaker p,
.speaker h4{
	padding: 0 var(--size-s);
}

#location-bottom-info{
	margin-top: var(--size-xl);
	background: var(--color-light);
	color: var(--color-dark);
	padding: var(--size-l);
	border-radius: var(--size-m);
	max-width: calc( var(--inner-wide) - (var(--size-l) * 2));
}
.volunteer{
	margin: var(--size-m) auto;
	position: relative;
	display: inline-block;
}

/* Minimal responsiveness */
/*
@media (max-width: 600px) {
	.main-navigation ul li {
		display: block;
		margin: 10px 0;
	}

	.container {
		padding: 10px;
	}
}

@media (max-width: 860px) {
	body{
		padding-top: 0;
	}
	h1{
		font-size: var(--size-l);
	}
	header{
		position: relative;
		flex-direction: column;
		background: none;
	}
	.home header{
		background: var(--color-light);
	}
	#logo{
		align-self: flex-start;
		padding-left: 0;
		height: calc( var(--size-xl) - 0px );
	}
	#home-welcome{
		padding: 12vh 0;
	}
	#home-welcome h1{
		font-size: calc(var(--size-l) + var(--size-s));
		padding: 0 var(--size-s);
		margin-top: var(--size-s);
	}
	#home-welcome .btn{
		clear: both;
	}
	#home-welcome .btn + br + .btn{
		margin-top: var(--size-s);
	}
	#home-events{
		flex-direction: column;
	}
	#home-events #home-events-calendar{
		width: 100%;
		max-width: calc(100% - (var(--size-l) * 2));
	}
	#home-events-events{
		width: calc(100% - (var(--size-l) * 2));
		display: flex;
		flex-direction: column;
	}
	#home-events-events .puff {
		margin: 0;
		width: 100%;
		max-width: 100%;
		border-bottom: 4px solid var(--color-light);
		margin-bottom: var(--size-l);
		padding-bottom: var(--size-l);
		float: none;
		display: block;
	}
	#home-events-events .puff:last-child{
		border-bottom: none !important;
		margin-bottom: 0px !important;
		padding-bottom: 0px !important;
		
	}
	#home-welcome > br{
		display: block;
	}
	#home-about-us{
		padding: var(--size-m) 0;
	}
	#home-about-us .inner{
		max-width: calc( 100% - (var(--size-l) * 2) - (var(--size-m) * 2) );
	}
}
*/

#mainwrapper.screen{
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	font-size: var(--size-l);
	
	display: flex; /* Aktiverar flexbox */
	justify-content: center; /* Centrerar horisontellt */
	align-items: center;
	
	position: relative;
	overflow: hidden;
}
#mainwrapper.screen .cal-day-headline .cal-info-row-0{
	display: none;
}
#mainwrapper.screen .cal-event-content{
	margin-top: var(--size-s);
}
#mainwrapper.screen .cal-day-headline .cal-info-rows .cal-info-row-1{
	text-transform: uppercase;
	letter-spacing: 6px;
	font-size: calc(var(--size-l) - 6px);
}
#mainwrapper.screen .cal-slide{
	background: var(--color-light);
	background: rgba(255,255,255,0.9);
	padding: var(--size-xl);
	border-radius: var(--size-s);
	max-width: 50vw;
}

@media (max-width: 1200px) {
	#home-welcome h2,
	h1{
		font-size: calc( var(--size-xxl) - var(--size-s) );
	}
}
@media (max-width: 1000px) {
	#home-welcome h2,
	 h1{
		font-size: calc( var(--size-xxl) - var(--size-l) );
	}
}
@media (max-width: 700px) {
	#home-welcome h2,
	h1{
		font-size: calc( var(--size-xl) );
	}
	header{
		background: linear-gradient(to bottom, var(--color-dark), rgba(0,0,0,0.8), rgba(0,0,0,0.5), rgba(0,0,0,0));
	}
	#home-welcome .content{
		padding: calc(var(--size-xxxl) + var(--size-l)) 0;
	}
	#menu-btn{
		top: var(--size-m);
		left: var(--size-m);
	}
	#anmalan-btn{
		top: var(--size-s);
		right: var(--size-s);
	}
	#logo{
		left: -38px;
		padding: var(--size-m) 0;
	}
	#home iframe{
		width: 100vw;
	}
	#location-cards > a{
		flex: 1 100%;
		max-width: 100%;
		padding: calc(var(--size-xxl) + var(--size-s)) 0 calc(var(--size-xl) + var(--size-l)) 0;
	}
	#home-gallery > div{
		width: 50%;
	}
	.container,
	#location-program,
	#location-speakers{
		max-width: calc(100% - (var(--size-m) * 2));
	}
	#location-speakers{
		flex-direction: column;
		width: 100%;
	}
	.speaker{
		flex: 1 100%;
		width: 100%;
		max-width: 100%;
	}
	.speaker p, .speaker h4{
		padding: 0 var(--size-m);
	}
}

.fade-in {
	opacity: 0;
	transform: translateY(60px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

span.w{
	transform: transform 0.25s ease-out;
}

.fancy {
  @supports (background-clip: text) or (-webkit-background-clip: text) {
	background-image: 
	  url("data:image/svg+xml,%3Csvg width='2250' height='900' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg%3E%3Cpath fill='rgb(190,211,92)' d='M0 0h2255v899H0z'/%3E%3Ccircle cx='366' cy='207' r='366' fill='rgb(210,230,120)'/%3E%3Ccircle cx='1777.5' cy='318.5' r='477.5' fill='rgb(170,190,70)'/%3E%3Ccircle cx='1215' cy='737' r='366' fill='rgb(140,160,50)'/%3E%3C/g%3E%3C/svg%3E");
	background-size: 110% auto;
	background-position: center;
	color: transparent;
	-webkit-background-clip: text;
	background-clip: text;
  }
}