@font-face {
	font-family: "DIN";
	src: url(../resources/fonts/D-DINExp.otf);
	font-weight: 300;
}

@font-face {
	font-family: "DIN";
	src: url(../resources/fonts/D-DINExp-Bold.otf);
	font-weight: 500;
}

@font-face {
	font-family: "Urbanist";
	src: url(../resources/fonts/Urbanist-ExtraBold.ttf);
	font-weight: 800;
}

:root {
	/* === design elements === */
	--rounding: 15px;
	--blur: 6px;
	--blur-on-cont: 3px;

	--winaero: linear-gradient(135deg,#fff5 70px,transparent 100px),linear-gradient(225deg,#fff5 70px,transparent 100px),linear-gradient(54deg,#0002 0 4%,#6661 6% 6%,#0002 8% 10%,#0002 15% 16%,#aaa1 17% 18%,#0002 23% 24%,#bbb2 25% 26%,#0002 31% 33%,#0002 34% 34.5%,#bbb2 36% 40%,#0002 41% 41.5%,#bbb2 44% 45%,#bbb2 46% 47%,#0002 48% 49%,#0002 50% 50.5%,#0002 56% 56.5%,#bbb2 57% 63%,#0002 67% 69%,#bbb2 69.5% 70%,#0002 73.5% 74%,#bbb2 74.5% 79%,#0002 80% 84%,#aaa2 85% 86%,#0002 87%,#bbb1 90%) left center/100vw 100vh no-repeat fixed;

	/* === text sizes === */
	font-size: 16px; /* === text size everything else is based off of === */

	--size-0: 0.875rem; /* 14px */
	--size-01: 0.9375rem; /* 15px */
	--size-1: 1rem; /* 16px */
	--size-2: 1.125rem; /* 18px */
	--size-3: 1.25rem; /* 20px */
	--size-4: 1.375rem; /* 22px */
	--size-5: 2.063rem; /* 33px */
	--size-6: 3.125rem; /* 50px */
	--size-sub-title: 2.375rem; /* 38px */ 
	--size-main-title: 6.25rem; /* 100px */
	--size-main-title-mobile: 3.75rem; /* 60px */ 
	--line-height-0: 1.375rem; /* 22px */
	--line-height-1: 1.65rem;  /* shrug */ 
	--line-height-2: 1.625rem;  /* 26px */ 
	--line-height-3: 1.75rem; /* 28px */ 
	--line-height-4: 1.625rem;  /* 26px */ 
	--line-height-5: 2.375rem;  /* 38px */ 
	--line-height-6: 3.75rem;  /* 60px */ 
	--line-height-sub-title: 2.375rem;  /* 38px */ 
	--line-height-main-title: 5.45rem;  /* 100px */ 
	--line-height-main-title-mobile: 2.3rem;  /* 60px */ 

	/* === fonts === */
	--font: "DIN", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--title-font: "Urbanist", ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	
}

html {
	scrollbar-color: var(--pebble-yellow) transparent;
	background-color: var(--bg-color);

	min-height:100%;/* make sure it is at least as tall as the viewport */
	position:relative;

	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	* {
		transition: none !important;
		animation: none !important;
	}
}

.bg {
	position: fixed;
	top: 0;
	left: 0;
	height: 100vh;
	width: 100%;
	background-image: var(--bg-img), var(--bg);
	background-size: cover;
	background-position: bottom;

	z-index: -999;
}

body {
	overflow-x: hidden;
	min-height: 100vh;
	min-height:100%;
	margin: 0;
	-webkit-text-size-adjust: 100%;
	@media screen and (max-width: 850px) {
		width: 100vw;
	}
}

div > a:link, div> a:visited, div > a:hover, div > a:active, nav > a:link, nav> a:visited, nav > a:hover, nav > a:active, article > a:link, article> a:visited, article > a:hover, article > a:active { 
	text-decoration: none;
	text-decoration-color: none;
	text-decoration-thickness: none;
}

p, li, h1, h2, h3, label {
	font-family: var(--font);
	font-weight: 300;
	font-size: var(--size-2);
	line-height: var(--line-height-2);
	
}

p, li {
	color: var(--text-color);
}

h1, h2, h3 {
	color: var(--text-color-white);
}

p a, li a, h2 a, p a:visited, li a:visited, h2 a:visited {
	color: var(--pebble-yellow);
	
	text-decoration-thickness: 1.3px;
	text-decoration-color: var(--pebble-yellow);
	text-underline-offset: auto;

	background: linear-gradient(90deg,var(--pebble-yellow) 0%, var(--pebble-yellow) 100%) no-repeat 0% 25px;

	transition: .3s;
}

@media (hover: hover) {
	p a:hover, li a:hover,h2 a:hover, p a:active, li a:active, h2 a:active {
		color: var(--bg-color);

		background: linear-gradient(90deg,var(--pebble-yellow) 0%, var(--pebble-yellow) 100%) no-repeat 0px 100%;
		
	}
}

button, input[type="submit"], input[type="reset"] {
	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: none;
}

.fancyLink {
	border-radius: var(--rounding);
	background-color: var(--highlight-color);
	padding: 5px 15px 5px 15px;
	margin-right: 10px;
	height: 26px;
	transition: .3s;
	width: fit-content;
	display: inline-block;

	backdrop-filter: blur(var(--blur));
	-webkit-backdrop-filter: blur(var(--blur));	
}

.fancyLink p {
	display: inline-block;
	color: var(--pebble-yellow);
	transition: .3s
}

@media (hover: hover) {
	.fancyLink:hover {
		background-color: var(--pebble-yellow);
	}

	.fancyLink:hover p {
		color: var(--bg-color);
	}

	.fancyLink:hover .textImageColored {
		fill: var(--bg-color);
		stroke: var(--bg-color);
	}
}

.fancyLink {
	text-decoration: none !important;
}

/* anim */

@keyframes floatUp {
	0% {
		transform: translate(0, 0);
		opacity: 1;
	}
	30% {
		opacity: 0;
	}
	100% {
		transform: var(--random-translate);
		opacity: 0;
	}
  }

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
		opacity: 0;
    }
    100% {
        transform: translateX(0);
		opacity: 1;
    }
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-100%);
		opacity: 0;
    }
    100% {
        transform: translateY(0);
		opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
		opacity: 0;
    }
    100% {
        transform: translateX(0);
		opacity: 1;
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(20vh);
		opacity: 0;
    }
	50% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(0);
		opacity: 1;
    }
}

@keyframes delay {
    0% {
		opacity: 0;
    }
    100% {
		opacity: 0;
    }
}

/* main content */

.pfpContainer{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: 200px;
	
	margin-bottom: -20px;
}

.pfp {
	height: 120px;

	cursor: pointer;

	user-select: none; /* Prevent text selection */
	-webkit-user-drag: none; /* Prevent image dragging in WebKit browsers (Chrome, Safari) */
	-moz-user-select: none; /* Prevent text selection in Firefox */
	-ms-user-select: none; /* Prevent text selection in Internet Explorer/Edge */
}

.notfoundpfp {
	width: 300px;
	aspect-ratio: 1 / 1;
	height: auto;
	max-width: 60%;
}

.floating-image {
	position: fixed;
	width: 50px;
	height: 50px;
	opacity: 0;
	animation: floatUp 7s forwards;
	pointer-events: none;
	animation-timing-function: linear;
	z-index: 999999;
  }

.simpleDivider {
	width: 100%;
	background-color: var(--bg-transp-color-2);
	height: 5px;
}

/* === themeswitch === */

[data-theme="auto"] {
	--bg: linear-gradient(110deg, #121220 0%, #1d2d33 50%, #FEEEE3 50%, #FEE3E5 100%);
	--text-color-white: rgb(255, 255, 255);
}

.themeSwitchButtonHeader {
	display: flex;
	flex-direction: row;
	position: absolute;
	top: 10px;
	right: 10px;
	height: auto;
	width: auto;
	
	background-color: var(--bg-transp-color);
	backdrop-filter: blur(var(--blur));
	-webkit-backdrop-filter: blur(var(--blur));

	border-radius: 100px;

	transition: .3s;

	z-index: 11;
}

.homeThemeSwitch {
	top: 10px;
	right: 10px;
	animation: .1s ease 0s 1 delay, .5s ease .1s 1 slideInFromTop;

	@media screen and (max-width: 1350px) {
		top: 10px;
		right: 10px;
	}
}

.themeMainCont {
	top: -141px;
	opacity: 0;

	position: fixed;
	height: 140px;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	z-index: 30;

	overflow: auto;

	backdrop-filter: blur(var(--blur));
	-webkit-backdrop-filter: blur(var(--blur));	
	background-color: var(--bg-transp-color);

	border-bottom: 1px;
	border-bottom-style: solid;
	border-bottom-color: var(--border-color);

	box-shadow: 0px 10px 20px var(--shadow-light-color);

	transition: .3s;
}

.themeMainCont > :first-child {
	margin-left: 10px;
}

.themeMainCont > :last-child {
	margin-right: 10px;
}

.themeSwitchOptionButtonCont {
	height: 140px;
	width: 200px;
	min-width: 200px;
	display: flex;
	justify-content: center;
	align-items: center;

	background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

.themeSwitchOptionButton {
	height: 100px;
	width: 180px;

	border-radius: var(--rounding);
	outline-width: 1px;
	outline-style: solid;
	outline-color: var(--border-color);
	background: var(--bg);
	box-shadow: 0px 10px 20px var(--shadow-light-color);

	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: left;

	padding: 10px 15px 10px 15px;
	box-sizing: border-box;

	transition: .3s;
}

@media (hover: hover) {
	.themeMainCont:has(.themeSwitchOptionButtonCont:hover) .themeSwitchOptionButtonCont:not(:hover) .themeSwitchOptionButton {
		transform: translateX(-2.5px) translateY(5px);
		opacity: .5;
	}

	.themeSwitchOptionButtonCont:hover > .themeSwitchOptionButton {
		outline-width: 3px;
		outline-style: solid;
		outline-color: var(--pebble-yellow);
		transform: translateX(1.25px) translateY(-2.5px);
	}
}

.themeExampleTitle {
	margin-top: 0px;
	margin-bottom: 10px;
	text-align: left;
	color: var(--text-color-white);
	font-weight: 400;
}

.themeExampleBox {
	width: 100%;
	height: 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.themeExampleCircle {
	height: 34px;
	width: 34px;
	border-radius: 100px;
	box-sizing: border-box;

}

.tec1 {
	background-color: var(--bg-transp-color-2);
	border-style: solid;
	border-width: 1px;
	border-color: var(--border-color);
}

.tec2  {
	background-color: var(--highlight-color);
}

.tec3 {
	background-color: var(--highlight-2-color);
}

.tec4 {
	background-color: var(--pebble-yellow);
}

/* === main content === */

.page {
	margin-left: 251px;
	display: flex;
	align-items: center;
	flex-direction: column;

	min-height: 100vh;
	height: 100%;
	width: calc(100% - 251px);

	@media screen and (max-width: 1200px) {
		margin-left: 0;
		overflow-y: visible;
	
		height: auto;
	
		width: 100dvw;
		width: 100vw;
	}
}

.page2 {
	display: flex;
	align-items: center;
	flex-direction: column;

	min-height: 100vh;
	height: 100%;
	width: 100%;

	@media screen and (max-width: 1200px) {
		margin-left: 0;
		overflow-y: visible;
	
		height: auto;
	
		width: 100dvw;
		width: 100vw;
	}
}

.page2 .pageContent {
	padding: 90px 60px 60px 60px;

	@media screen and (max-width: 499px) {
		margin: 0;
		padding: 65px 20px 20px 20px;
		width: calc(100% - 40px);
	}

	@media screen and (max-width: 850px) and (min-width: 500px) {
		margin: 0;
		padding: 90px 20px 20px 20px;
		width: calc(100% - 40px);
	}
	@media screen and (max-width: 1200px) and (min-width: 851px) {
		margin: 0;
		padding: 90px 20px 20px 20px;
	}

}

.pageContentWrapper {
	width: 100%;
	min-height: calc(100vh - 145px);
	min-height: calc(100dvh - 145px);
	height: auto;
	display: flex;
	justify-content: center;
	align-items: start;

	flex-direction: row;

	@media screen and (max-width: 850px) {
	flex-direction: column-reverse;
	}
}

.pageContent {
	width: calc(100% - 120px);
	align-self: flex-start;

	padding: 60px;
	border-radius: var(--rounding);

	font-family: var(--font);
	color: var(--text-color);	

	animation: 1s ease 0s 1 slideInFromBottom;

	@media screen and (max-width: 850px) {
		margin: 53px 0px 0px 0px;
		padding: 20px;
		width: calc(100% - 40px);
	}
	@media screen and (max-width: 1200px) and (min-width: 851px) {
		margin: 43px 0px 0px 0px;
		padding: 30px;
	}
}

.pagesHeader {
	animation: none !important;
}

.narrow {
	max-width: 800px;	
}

.wide {
	max-width: 1200px;
}

.max {
	max-width: 2000px;
}

footer {
	width: 100%;
	min-height: 75px;

	background-color: var(--bg-transp-color);
	backdrop-filter: blur(var(--blur));
	-webkit-backdrop-filter: blur(var(--blur));

	display: flex;
	align-items: center;
	justify-content: center;

	border-top-style: solid;
	border-color: var(--border-color);
	border-width: 1px;
	box-sizing: border-box;
	@media screen and (max-width: 500px) {
		padding-bottom: 65px;
	}
}

.footerCont {
	width: 1300px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: stretch;
	gap: 40px;

	@media screen and (max-width: 1000px) {
		justify-content: center;
		gap: 0px;
	}
}

footer p {
	margin: 0;
}

.footerImgCont {
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;

	@media screen and (max-width: 890px) {
		order: 99;
	}
}

.footerImgCont img {
	cursor: pointer;

	user-select: none; /* Prevent text selection */
	-webkit-user-drag: none; /* Prevent image dragging in WebKit browsers (Chrome, Safari) */
	-moz-user-select: none; /* Prevent text selection in Firefox */
	-ms-user-select: none; /* Prevent text selection in Internet Explorer/Edge */
	
	height: 104px;
	aspect-ratio: 1 / 1;
}

.footerLinkCont{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	padding: 20px 20px;
	gap: 20px;
	justify-content: space-between;
}

.footerLinkCont div {
	display: flex;
	flex-direction: column;
	width: 120px;
}

.footerDisclaimerCont {
	width: auto;
	padding: 20px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin-left: auto;
	text-align: right;

	@media screen and (max-width: 450px) {
		margin-left: unset;
		text-align: center;
	}
	@media screen and (max-width: 1000px) and (min-width: 450px) {
		margin-left: unset;
	}
	
}

/* === text === */

#date, .date, .changelogDate {
	color: var(--date-color);
	margin: 0;
	font-family: var(--font);
}

#stampText {
	font-size: .8rem;
	margin: 0;
	line-height: 33px;
}

.pageContent h1 {
	color: var(--pebble-yellow);
	font-weight: 500;
	font-size: var(--size-6);
	line-height: var(--line-height-6);
	margin-top: 0;
	margin-bottom: 15px;
}

.pageContent h2 {
	font-weight: 500;
	font-size: var(--size-4);
	line-height: var(--line-height-4);
	margin-bottom: 15px;
	margin-top: 40px;
	scroll-margin-top: 40px;
}

.homepage h2 {
	margin-top: 0px;
}

.pageContent h3 {
	font-size: var(--size-2);
	line-height: var(--line-height-3);
	margin-bottom: 10px;
	margin-top: 20px;
	font-weight: 500;
}

.pageContent p {
	margin-top: 0;
	margin-bottom: 10px;
	line-height: var(--line-height-1);
}

.largerBottomMargin {
	margin-bottom: 80px !important;
}

.smallBottomMargin {
	margin-bottom: 24px !important;
}

.noBottomMargin {
	margin-bottom: 0px !important;
}

.pageContent strong {
	color: var(--pebble-yellow);
}

.pageContent li, .toc li {
	margin: 5px 0 5px 0;
}

.pageContent ul {
	margin-bottom: 10px;
	margin-top: 0;
}

.center {
	text-align: center;
}

.yellow {
	color: var(--pebble-yellow) !important;
}

.liOffset {
	margin-left: 30px !important;
	list-style-type: circle;
}

.liOffsetTwo {
	margin-left: 60px !important;
	list-style-type: square;
}

.textBox {
	width: calc(100% - 40px);
	height: auto;
	padding: 20px;
	background-color: var(--bg-transp-color);
	outline-style: solid;
	outline-width: 1px;
	outline-color: var(--border-color);
	border-radius: var(--rounding);
	margin-bottom: 40px;

	backdrop-filter: blur(var(--blur));
	-webkit-backdrop-filter: blur(var(--blur));

	transition: .3s;
}

.textBox h2 {
	margin-top: 0px;
}

aside {
 	width:auto;
	float: right;
	height: auto;
	padding: 20px;
	background-color: var(--bg-transp-color);
	outline-style: solid;
	outline-width: 1px;
	outline-color: var(--border-color);
	border-radius: var(--rounding);
	margin-bottom: 20px;
	margin-left: 20px;

	backdrop-filter: blur(var(--blur));
	-webkit-backdrop-filter: blur(var(--blur));

	transition: .3s;
}

.contents {
	min-width: 250px;
	height: auto;
	margin-bottom: 0;
	margin-left: 0;
	background-color: transparent;
	outline-style: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	overflow: auto;

	position: sticky;
	top: 0px;
	margin-top: 50px;
	max-height: calc(100vh - 40px);
	max-height: calc(100dvh - 40px);
}

.desktopContents {
	@media screen and (max-width: 850px) {
		display: none;
	}
	@media screen and (min-width: 851px) {
		display: block;
	}
}

.mobileContents {
	margin-top: 0px;
	margin-bottom: 15px;
	position: relative;
	max-height: none;

	@media screen and (max-width: 850px) {
		display: block;
	}
	@media screen and (min-width: 851px) {
		display: none;
	}
}

.contents ul {
	margin: 0;
	padding-left: 30px;
}

ul ul {
	padding-left: 30px;
	margin-bottom: 0px !important;
}

.contents p {
	margin: 0 0 10px 0;
}

.pageSplitContainer{
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: stretch;
	scroll-margin-top: 40px;
}

.pageSplitReverseMobileOrderWide {
	@media screen and (max-width: 1200px) {
		flex-direction: column-reverse;
	}
}

.pageSplitReverseMobileOrder {
	@media screen and (max-width: 850px) {
		flex-direction: column-reverse;
	}
}

.pageSplitLeft {
	padding-right: 20px;
	@media screen and (max-width: 850px) {
		padding-right: 0;
	}
}

.pageSplitRight {
	padding-left: 20px;
	@media screen and (max-width: 850px) {
		padding-left: 0;
	}
}

.pageSplitLeftWide {
	padding-right: 20px;
	@media screen and (max-width: 1200px) {
		padding-right: 0;
	}
}

.pageSplitRightWide {
	padding-left: 20px;
	@media screen and (max-width: 1200px) {
		padding-left: 0;
	}
}

.pageSplitVerticalCenter {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.pageSplitImgCont {
	display: flex;
	align-items: center;
	justify-content: center;
}

.pageSplit25 {
	width: calc(25% - 20px);
	@media screen and (max-width: 850px) {
		width: 100%;
	}
}

.pageSplit33 {
	width: calc(calc(100% / 3) - 20px);
	@media screen and (max-width: 850px) {
		width: 100%;
	}
}

.pageSplit40 {
	width: calc(calc(100% * .4) - 20px);
	@media screen and (max-width: 850px) {
		width: 100%;
	}
}

.pageSplit40Wide {
	width: calc(calc(100% * .4) - 20px);
	@media screen and (max-width: 1200px) {
		width: 100%;
	}
}

.pageSplit50 {
	width: calc(50% - 20px);
	@media screen and (max-width: 850px) {
		width: 100%;
	}
}

.pageSplit50Wide {
	width: calc(50% - 20px);
	@media screen and (max-width: 1200px) {
		width: 100%;
	}
}

.pageSplit60 {
	width: calc((100% * .6) - 20px);
	@media screen and (max-width: 850px) {
		width: 100%;
	}
}

.pageSplit60Wide {
	width: calc((100% * .6) - 20px);
	@media screen and (max-width: 1200px) {
		width: 100%;
	}
}

.pageSplit66 {
	width: calc(calc(100% / 3 * 2) - 20px);
	@media screen and (max-width: 850px) {
		width: 100%;
	}
}

.pageSplit75 {
	width:calc(75% - 20px);
	@media screen and (max-width: 850px) {
		width: 100%;
	}
}

.pageSplitMobileBottomMargin {
	@media screen and (max-width: 850px) {
		margin-bottom: 40px;
	}
}

.aboutStampCont {
	max-width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.aboutStampIndCont{
	position: relative;
	width: 98px;
	height: 41px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.aboutStamp{
	width: 88px;
	height: 31px;
	image-rendering: pixelated;
	position: relative;
	transition: transform 0.5s ease;
}

@media (hover: hover) {
	.aboutStampIndCont:hover > .aboutStamp {
		box-shadow: 0px 10px 20px var(--shadow-color);
		transform: scale(1.6);
		z-index: 2;
	}
}

.stampAlt {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 88px;
	height: 31px;
	transition: transform 0.5s ease;
	border-style: solid;
	border-color: var(--border-color);
	border-width: 1px;
	background-color: var(--bg-color);
}

@media (hover: hover) {
	.aboutStampIndCont:hover > .stampAlt {
		box-shadow: 0px 10px 20px var(--shadow-color);
		transform: scale(1.6);
		z-index: 2;
	}
}

.inlineImageCont {
	flex-direction: column;
	width: 33%;
	float: right;
	margin: 0 0 20px 20px;
	overflow: hidden;

	height: auto;
	background-color: var(--bg-transp-color);
	outline-style: solid;
	outline-width: 1px;
	outline-color: var(--border-color);
	border-radius: var(--rounding);

	backdrop-filter: blur(var(--blur));
	-webkit-backdrop-filter: blur(var(--blur));

	@media screen and (max-width: 850px) {
		width: 50%;
		margin: 0 0 10px 10px;
	}
}

.inlineImageText {
	padding: 5px 15px 5px 15px;
	margin: 0 !important;
	font-size: var(--size-0);
}

.containedInlineImage {
	width: 100%;
	height: auto;
}

.inlineImage {
	flex-direction: column;
	object-fit: contain;
	width: 33%;
	float: right;
	gap: 10px;
	margin: 0 0 20px 20px;


	@media screen and (max-width: 850px) {
		display: block;
		width: 100%;
		max-height: 300px;
		margin-left: 0;
	}
}

.textImage {
	max-height: var(--size-2);
	max-width: var(--size-2);
	display: inline-block;
}

.textImageWhite {
	filter: var(--icon-filter);
	-webkit-filter: var(--icon-filter);
}

.textImageColored {
	fill: var(--pebble-yellow);
	stroke: var(--pebble-yellow);
	transition: .3s
}

@media (hover: hover) {
	.textImageColored:hover, a:hover .textImageColored {
		fill: var(--bg-color);
		stroke: var(--bg-color);
	}
}

.soloImage {
	flex-direction: column;
	object-fit: contain;
	width: 100%;
	max-height: 300px;
	float: right;
	gap: 10px;
	margin: 20px 0 20px 0;
	border-radius: var(--rounding);

	@media screen and (max-width: 850px) {
		display: block;
		width: 100%;
		max-height: 300px;
		margin-left: 0;
	}
}

.soloImageTall {
	flex-direction: column;
	object-fit: contain;
	width: 100%;
	max-height: 800px;
	gap: 10px;
	margin: 20px 0 20px 0;
	border-radius: var(--rounding);

	@media screen and (max-width: 850px) {
		display: block;
		width: 100%;
		max-height: 800px;
		margin-left: 0;
	}
}

.float {
	display: flex;
	flex-direction: column;
	width: auto;
	float: right;
	gap: 10px;
	margin: 0 0 20px 20px;

	@media screen and (max-width: 850px) {
		width: calc(100% - 40px);
		margin-left: 0;
	}
}

/* === blog specific === */

.blogItemContainer {
	width: 100%;
	height: auto;
}

.blogTextBox {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 15px !important;
}

@media (hover: hover) {
	.blogItemContainer:hover > .blogTextBox {
		outline-color: var(--pebble-yellow);
		outline-width: 3px;

		transform: translateY(-5px) translateX(10px);
	}
}

.blogMood {
	display: flex;
	flex-direction: column;
	width: 33%;
	float: right;
	gap: 10px;
	margin: 0 0 20px 20px;

	@media screen and (max-width: 600px) {
		width: calc(100% - 40px);
		margin-left: 0;
	}
}

.blogMoodTitle {
	font-size: var(--size-0);
	font-weight: 500;
	opacity: .5;
	margin: 0!important;
}

.blogMoodText {
	margin: 0 !important;
}

.blogRect {
	width: 100%;
}

.blogRect h2 {
	margin-top: 0px;
}

.blogDate {
	float: right;
	display: block;
	margin-top: 0;
	@media screen and (max-width: 1170px) {
		float: none;
		margin-bottom: 10px !important;
	}
}

.homepage .blogDate {
	float: none;
	margin-bottom: 10px !important;
}

.blogTitle {
	color: var(--pebble-yellow);
	float: left;
	@media screen and (max-width: 1170px) {
		float: none;
	}
}

.blogDivider {
margin-top: 40px;
margin-bottom: 40px;
}

/* === homepage specific === */

/* start homepage cards */

.homeCardsCont {
	height: auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	max-width: 1300px;

	@media screen and (max-width: 799px) {
		grid-template-columns: minmax(0, 1fr);
	}
	@media screen and (max-width: 900px) and (min-width: 800px) {
		grid-template-columns: repeat(2, 1fr);
	}
}

.homeCardCont {
	min-height: 0;
	grid-column: span 1;
	scroll-margin-top: 40px;
}

.homeCard {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;

	height: 100%;
	padding: 20px;

	outline-style: solid;
	outline-width: 1px;
	outline-color: var(--border-color);

	border-radius: var(--rounding);
	box-sizing: border-box;
	
	box-shadow: 0px 10px 20px var(--shadow-light-color);

	background-color: var(--bg-transp-color);

	backdrop-filter: blur(var(--blur));
	-webkit-backdrop-filter: blur(var(--blur));	

	transition: .3s;
}

.homeCardTwoWide {
	grid-column: span 2;

	@media screen and (max-width: 900px) {
		grid-column: span 1;
	}
}

.homeCardThreeWide {
	grid-column: span 3;

	@media screen and (max-width: 799px) {
		grid-column: span 1;
	}

	@media screen and (max-width: 900px) and (min-width: 800px) {
		grid-column: span 2;
	}
}

/* image card specific stuff */

.imgCardCont {
	contain: size; /* prevents image from defining height of row */

	@media screen and (max-width: 799px) {
		contain: inherit;
		max-height: 350px;
	}
	@media screen and (max-width: 900px) and (min-width: 800px) {
		contain: inherit;
	}
}

.imgCardCont img {
	height: 100%;
	width: 100%;
	max-height: 100%;
	max-width: 100%;

	object-fit: contain;
}

.firstImgCont {
	grid-row: span 2;

	@media screen and (max-width: 900px) {
		grid-row: span 1;
	}
}

/* about card specific stuff */

.homeCardSocials {
	margin-top: 0px;
	margin-bottom: 0px;
	animation: none;
}


.homeCardSocials .navButton {
 	backdrop-filter: none !important;
	-webkit-backdrop-filter: none !important;	
}

/* cusdis / comments */
	#cusdis_thread iframe {
		height: 500px;
	}
/* gallery */

.homeGalleryCard .glrCont {
	display: flex;
	flex-direction: row;
	grid-auto-flow: inherit;
	grid-template-columns: inherit;
	grid-auto-rows: inherit;
	justify-content: flex-start;
	gap: 20px;
	overflow: auto;
	padding: 10px 20px 20px 20px;
	margin: -10px -20px -10px -20px;
	@media screen and (max-width: 464px) {
		gap: 10px;
	}

}

.homeGalleryCard .glrItemCont {
	min-width: 300px;
	@media screen and (max-width: 464px) {
		min-width: 150px;
		max-width: 150px;
	}
	@media screen and (max-width: 999px) and (min-width: 465px) {
		min-width: 200px;
		max-width: 200px;
	}
	@media screen and (max-width: 1180px) and (min-width: 1000px) {
		min-width: 250px;
		max-width: 250px;

	}
}

.homeGalleryCard .glrItem {
	backdrop-filter: none;
	-webkit-backdrop-filter: none;	
	@media screen and (max-width: 464px) {
		max-width: unset;
	}
 }


.homeGalleryCard .fancyLink {
	margin-top: 15px;
}

/* online card specific stuff */

.homeOnlineCardCont {
	@media screen and (max-width: 799px) {
		grid-column: span 1;
	}

	@media screen and (max-width: 900px) and (min-width: 800px) {
		grid-column: span 2;
	}
}

/* blog card specific stuff */

.homeBlogCard .blogTextBox {
	margin-bottom: 0px !important;
	backdrop-filter: none;
	box-shadow: 0px 10px 20px var(--shadow-light-color);
}

.homeBlogCardCont {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.homeBlogCardCont .fancyLink {
	margin-top: 15px;
}

/* links card specific stuff */

.homeLinksCard .aboutStampCont {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;

	margin-bottom: 15px;
}

/* changelog card specific stuff */

.homeChangelogCard .changelogTextBox {
	box-shadow: 0px 10px 20px var(--shadow-light-color);
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

/* fedi card specific stuff */

.homeSocialsCardCont .mastodonFrame {
	margin-top: 0px;
	max-height: calc(100% - 41px);

	@media screen and (max-width: 799px) {
		max-height: inherit;
	}
}

.homeSocialsCardCont {
	contain: size;

	@media screen and (max-width: 799px) {
		contain: inherit;
	}
}

.homeSocialsCardMastCont {
	max-height: 100%;

	@media screen and (max-width: 799px) {
		display: flex;
		flex-direction: column;
		align-items: center;
		max-height: 600px;
	}

}

/* webring card specific stuff */

.webrings {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.webring {
	box-sizing: border-box;
	height: auto;
	width: 100%;

	display: flex;
	flex-direction: row;
	flex-wrap: wrap;

	justify-content: left;	

  	transition: .3s;
}

.webringButtonText {
	font-size: var(--size-1);
	margin-right: 20px;
	color: var(--text-color-white);
	text-decoration: none !important;
	margin-bottom: 0 !important;
}

.webringButtonCont {
	width: calc(100% / 3);
}

.webringNoRandom .webringButtonCont {
	width: calc(100% / 2);
}

.webringMainButtonCont {
	width: 100% !important;
}

.webringButton {
	display: flex;
	align-items: center;

	height: 45px;

	box-sizing: border-box;

	border-style: solid;
	border-width: 1px;
	border-color: var(--border-color);

	background-color: var(--bg-transp-color-2);

	transition: .3s;
}

.webringMainButtonCont .webringButton {
	border-top-left-radius: var(--rounding);
	border-top-right-radius: var(--rounding);
	border-bottom-color: transparent;
}

.webringPrevButton {
	border-bottom-left-radius: var(--rounding);
	border-right-color: transparent;
}

.webringNoRandom .webringPrevButton {
	border-right-color: var(--border-color);
}

.webringNextButton {
	border-bottom-right-radius: var(--rounding);
	border-left-color: transparent;
}

.webringButtonIconContainer {
	height: 100%;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.webringButtonIcon {
	max-width: 40%;
	max-height: 40%;
	width: auto;
	height: auto;
	
	filter: var(--icon-filter);
	-webkit-filter: var(--icon-filter);
}

@media (hover: hover) {
	.webring:has(.webringButtonCont:hover) .webringButtonCont:not(:hover) .webringButton {
		transform: translateX(-2.5px) translateY(5px);
		opacity: .5;
	}

	.webringButtonCont:hover > .webringButton {
		transform: translateX(1.25px) translateY(-2.5px);
		opacity: 1;
		z-index: 50;

		background-color: var(--bg-transp-color-2);

		outline-style: solid;
		outline-width: 3px;
		outline-color: var(--pebble-yellow);
	}
}

/* end homepage cards */

.indexHeader {
	display: flex;
	flex-direction: row;
	position: fixed;
	top: 50px;
	right: 181px;
	height: auto;
	width: auto;

	background-color: var(--bg-transp-color);
	backdrop-filter: blur(var(--blur-on-cont));
	-webkit-backdrop-filter: blur(var(--blur-on-cont));

	border-radius: 100px;

	transition: .3s;

	z-index: 12;

	animation: .1s ease 0s 1 delay, .5s ease .1s 1 slideInFromTop;

	@media screen and (max-width: 1200px) {
		flex-direction: column;
		top: 10px;
		right: auto;
		left: 10px;
		max-height: 51px;
		max-width: 110px;
		border-radius: 25.5px;
		overflow: hidden;
		position: fixed;
	}
	@media screen and (max-width: 1350px) and (min-width: 1201px) {
		top: 10px;
		right: 141px;
	}
}

.indexHeaderButtonContainer{
	display: flex;
	justify-content: center;
	align-items: center;

	width: auto;
	height: 51px;
	z-index: 1;

	@media screen and (max-width: 1200px) {
		width: 100%;
	}
}

.indexHeaderButton{
	position: relative;
	display: flex;
	align-items: center;

	width:auto;
	height: 45px;

	background-color: var(--bg-transp-color-2);
	backdrop-filter: blur(var(--blur));
	-webkit-backdrop-filter: blur(var(--blur));

	outline-style: solid;
	border-radius: 100px;
	outline-width: 1px;
	outline-color: var(--border-color);

	border-style: solid;
	border-color: transparent;
	transition: .3s;

	@media screen and (max-width: 1200px) {
		width: calc(100% - 6px);
	}
}

@media (hover: hover) {
	.indexHeader:hover .indexHeaderButton {
		opacity: .5;
		@media screen and (max-width: 1200px) {
			opacity: 1;
		}
	}


	.indexHeader:has(.indexHeaderButtonContainer:hover) .indexHeaderButtonContainer:not(:hover) .indexHeaderButton {
		opacity: .5;
	}

	.indexHeaderButtonContainer:hover > .indexHeaderButton {
		border-color: var(--pebble-yellow);
		border-width: 3px;
		opacity: 1;

		background-color: var(--sidebar-button-color);

		@media screen and (max-width: 850px) {
			border-color: rgba(0,0,0,0);
		}
	}

	.indexHeaderButtonContainer:hover{
		z-index: 2;
	}
}

.indexHeaderButtonText {
	font-size: var(--size-1);
	margin-right: 20px;
	color: var(--text-color-white);
}

.indexHeaderButtonIconContainer {
	height: 100%;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.indexHeaderButtonIcon {
	max-width: 40%;
	max-height: 40%;
	width: auto;
	height: auto;
	filter: var(--icon-filter);
	-webkit-filter: var(--icon-filter);
}

.indexPage {
	display: flex;
	align-items: center;
	flex-direction: column;
	overflow-y: hidden;
	overflow-x: hidden;

	min-height: 100vh;
	height: 100%;
	width: 100%;

	@media screen and (max-width: 850px) {
		margin-left: 0;
		overflow-y: none;
	
		height: auto;
	
		width: 100dvw;
		width: 100vw;
	}
}

#menuButton {
	display: none;
	@media screen and (max-width: 1200px) {
		display: block;
	}
}

.homepage {
	max-width: 2000px;
	width: calc(100% - 200px);
	margin: 60px;
	padding: 0px;
	display: flex;
	flex-direction: column;
	align-items: center;

	animation: none !important;

	@media screen and (max-width: 800px) {
		margin: 50px 10px 60px 10px;
		width: calc(100% - 20px);
	}
	@media screen and (max-width: 1200px) and (min-width: 801px) {
		margin: 50px 20px 60px 20px;
		width: calc(100% - 40px);
	}
}

.homePageIntro {
	min-height: calc(100vh - 120px);
	min-height: calc(100dvh - 120px);
	margin-bottom: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;

	@media screen and (max-width: 850px) {
		justify-content: center;
		min-height: auto;
	}
	@media screen and (max-width: 1200px) and (min-width: 851px) {
		margin-bottom: 50px;
	}
}

.pebbleSubTitle {
	font-size: var(--size-sub-title) !important;
	line-height: var(--line-height-sub-title) !important;
	font-family: var(--title-font) !important;
	font-weight: 800 !important;
	margin-bottom: -10px;

	animation: .5s ease 0s 1 slideInFromLeft;

	@media screen and (max-width: 1000px) {
		font-size: var(--size-4) !important;
		line-height: var(--line-height-sub-title-mobile) !important;
	}
}

.pebbleTitle {
	font-size: var(--size-main-title) !important;
	line-height: var(--line-height-main-title) !important;
	font-family: var(--title-font) !important;
	font-weight: 800 !important;
	margin-top: -50px !important;
	margin-bottom: 70px !important;

	animation: .1s ease 0s 1 delay, .5s ease .1s 1 slideInFromLeft;

	@media screen and (max-width: 1000px) {
		font-size: var(--size-main-title-mobile) !important;
		line-height: var(--line-height-main-title-mobile) !important;
		margin-bottom: 40px !important;
		margin-top: -20px !important;
	}
}

.widePelCont {
	height: 100%;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transform: translateX(50px);
	@media screen and (max-width: 1200px) {
 		transform: none;
	}
}

.widePebbleImage {
	object-fit: contain;
	box-sizing: border-box;
	background-size: contain;
	background-position: right;
	height: 90%;
	min-height: 250px;
	max-height: 800px;
	width: 100%;
	max-width: 100%;
	background-image: var(--pebl-img);
	background-repeat: no-repeat;
	margin-right: -75px;

	animation: .1s ease 0s 1 delay, .5s ease .1s 1 slideInFromRight;

	@media screen and (max-width: 850px) {
		max-height: 350px;
		background-position: center;
	}
}

.homePageImage {
	object-fit: contain;
	max-width: calc(100% - 100px);
	max-height: 700px;
	margin: 0 50px 0 50px;
	@media screen and (max-width: 850px) {
		max-height: 250px;
		margin: 50px 50px 50px 50px;
	}
}

.homePageInfoContainer {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
}

.homePageInfoItem {
	width: 100%;
	min-height: 35px;
	display: flex;
	flex-direction: row;
	align-items: center;

	animation: .2s ease 0s 1 delay, .5s ease .2s 1 slideInFromLeft;

	@media screen and (max-width: 850px) {
		min-height: 25px;
	}
	@media screen and (max-width: 1000px) and (min-width: 850px) {
		min-height: 30px;
	}
}

.homePageInfoIcon {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 35px;
	min-width: 35px;
	@media screen and (max-width: 850px) {
		height: 25px;
		min-width: 25px;
	}
	@media screen and (max-width: 1000px) and (min-width: 850px) {
		height: 30px;
		min-width: 30px;
	}
}

.homePageInfoIconText {
	margin-bottom: 0 !important;
	color: #f3183d !important;
}

.homePageInfoIconImage {
	max-width: 50%;
	max-height: 50%;
	width: auto;
	height: auto;
	fill: var(--pebble-yellow);
	stroke: var(--pebble-yellow);
}

.homePageInfoTextBox {
	display: flex;
	align-items: center;
}

.homePageInfoText {
	margin-bottom: 0px !important;
	margin-left: 10px;
	margin-top: 0;
	color: var(--text-color-white);
	font-weight: 500;
	font-size: var(--size-4);
	line-height: var(--line-height-4);
	@media screen and (max-width: 1000px) {
		font-size: var(--size-2) !important; 
		line-height: var(--line-height-2)
	}
}

.indexSocials {
	display: inline-flex;
	flex-wrap: wrap;
	flex-direction: row;
	height: auto;
	width: auto;

	gap: 8px;

	justify-content: left;	

	transition: all .5s ease;
}

.mainIndexSocials {
	margin-top: 70px;
	animation: .3s ease 0s 1 delay, .5s ease .3s 1 slideInFromLeft;
	
	@media screen and (max-width: 1000px) {
		margin-top: 40px;
	}
}

.indexSocials2 {
	margin-top: 10px;
	margin-bottom: 40px;
	animation: none;
}

.ring{
	margin-bottom: 10px;
	display: flex;
	width: auto;
}

.ring .indexSocials {
	margin-top: 0px;
	animation: none;
}

.ring .indexSocialsButtonContainer {
	@media screen and (max-width: 850px) {
		width: 100%;
	}
}

.indexSocialsButtonText {
	font-size: var(--size-1);
	margin-right: 20px;
	color: var(--text-color-white);
	text-decoration: none !important;
	margin-bottom: 0 !important;
}

.indexSocialsButton {
	background-color: var(--bg-transp-color-2);

	outline-style: solid;
	border-radius: 100px;
	outline-width: 1px;
	outline-color: var(--border-color);
}

@media (hover: hover) {
	.indexSocials:has(.indexSocialsButtonContainer:hover) .indexSocialsButtonContainer:not(:hover) .indexSocialsButton {
		transform: translateX(-2.5px) translateY(5px);
		opacity: .5;
	}

	.indexSocialsButtonContainer:hover > .indexSocialsButton {
		transform: translateX(1.25px) translateY(-2.5px);
		opacity: 1;
		z-index: 50;

		background-color: var(--bg-transp-color-2);

		outline-style: solid;
		border-radius: 100px;
		outline-width: 3px;
		outline-color: var(--pebble-yellow);
	}
}

.mastodonContainer {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.mastodonFrame {
	width: 400px;
	max-width: 100%;
	height: 500px;
	border-radius: var(--rounding);
	margin-top: 20px;

	outline-style: solid;
	outline-width: 1px;
	outline-color: var(--border-color);
}

.homePageDivider {
	width: 750px;
	height: 2px;
	background-color: var(--border-color);
	margin: 75px 0 75px calc(50% - 375px);
	@media screen and (max-width: 850px) {
		background-color: rgba(0,0,0,0);
		margin: 0;
	}
}

/* === changelog === */

.changelogTextBox {
	margin-bottom: 15px !important;
}

.changelogList{
	padding-right: 20px;
}

.changelogEntryButtons {
	display: flex;
	flex-direction: row;
}

.versionNumber {
	color: var(--pebble-yellow);
	border-radius: var(--rounding);
	background-color: var(--highlight-color);
	padding: 5px 15px 5px 15px;
	margin-right: 10px;
	font-weight: 300 !important;
	height: 26px;
}

.changelogDate {
	float: right;
	@media screen and (max-width: 850px) {
		float: none;
	}
}

/* === gallery main page === */

.glrPageNavCont {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
}

.glrPageNavCont p {
	margin: 0 !important;
}

.glrPageNav {
	margin: 0 -10px;
	min-width: 233px;
	@media screen and (max-width: 500px) {
		min-width: 124px;
	}
}

.glrPageNav .navButtonTextCont {
	@media screen and (max-width: 500px) {
		display: none;
	}
}

.glrCont {
	height: auto;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(auto-fit, 300px);
	grid-auto-rows: 300px;
	justify-content: center;
	gap: 20px;
	transition: .3s;
	padding: 10px 0;

	@media screen and (max-width: 464px) {
		grid-template-columns: auto auto;
		grid-auto-rows: 200px;
		gap: 10px;
	}
	@media screen and (max-width: 999px) and (min-width: 465px) {
		grid-template-columns: repeat(auto-fit, 200px);
		grid-auto-rows: 200px;
	}
	@media screen and (max-width: 1180px) and (min-width: 1000px) {
		grid-template-columns: repeat(auto-fit, 250px);
		grid-auto-rows: 250px;
	}
}


.glrHeading {
	font-weight: 500;
	font-size: var(--size-4);
	line-height: var(--line-height-4);
	margin-bottom: 15px;
	margin-top: 20px !important;
	scroll-margin-top: 40px;
	color: var(--text-color-white)
}

.glrHeadingFirst {
	margin-top: 00px !important;
}

.glrItemCont {
	height: 100%;
	width: 100%;
}

.glrItem {
	height: 100%;
	width: 100%;

	display: flex;
	flex-direction: column;

	outline-width: 1px;
	outline-style: solid;
	outline-color: var(--border-color);
	border-radius: var(--rounding);
	background-color: var(--bg-transp-color);
	backdrop-filter: blur(var(--blur));
	-webkit-backdrop-filter: blur(var(--blur));	
	box-shadow: 0px 10px 20px var(--shadow-light-color);

	overflow: hidden;

	box-sizing: border-box;
	padding: 10px;

	transition: .3s;

	@media screen and (max-width: 464px) {
		padding: 5px;
		max-width: calc(50dvw - 22.5px);
	}
	@media screen and (max-width: 1000px) and (min-width: 465px) {
		padding: 5px;
	}
}

@media (hover: hover) {
	.glrItemCont:hover > .glrItem {
		outline-width: 3px;
		outline-color: var(--pebble-yellow);
		transform: translateX(2.5px) translateY(-5px);
	}
}

.glrImg {
	width: 100%;
	height: 100%;
	object-fit: contain;
	position: absolute;
	z-index: 3;
}

.glrImgCont {
	height: auto;
	aspect-ratio: 1 / 1;
	position: relative;

	overflow: hidden;
	border-radius: var(--rounding);
	border-width: 1px;
	border-style: solid;
	border-color: var(--border-color);

	background-color: var(--bg-color);
}

.glrImgNsfwCont {
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;

	display: flex;
	align-items: center;
	justify-content: center;

	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(var(12px));	

	z-index: 10;
}

.glrImgNsfwText {
	font-size: var(--size-2);
	color: var(--text-color);
	padding: 10px 20px;
	background-color: var(--bg-on-blur);
	border-radius: var(--rounding);
}

.glrBgImg {
	height: 120%;
	width: 120%;
	position: absolute;
	top: -10%;
	left: -10%;
	object-fit: cover;
	z-index: 0;
	filter: opacity(1) blur(20px);

}

.glrTextCont {
	height: auto;
	width: 100%;
	padding: 10px 10px 0 10px;
	box-sizing: border-box;
}

.glrTitle{
	font-size: var(--size-2);
	font-weight: 500;
	color: var(--text-color-white);
	margin-bottom: 0 !important;

	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;

	@media screen and (max-width: 1000px) {
		font-size: var(--size-1);
	}
}


/* === nav === */

.navCont {
	width: fit-content;
	height: 65px;
	box-sizing: border-box;
	padding: 10px;
	display: flex;
	transition: transform .3s, background .3s, color .3s, opacity .3s, position .3s, border .3s, top .3s, bottom .3s;
}

.nav {
	width: 100%;
	height: 100%;

	display: flex;
	flex-direction: row;

	border-style: solid;
	border-width: 1px;
	border-color: var(--border-color);
	border-radius: 100px;

	background-color: var(--bg-on-blur);
	backdrop-filter: blur(var(--blur-on-cont));
	-webkit-backdrop-filter: blur(var(--blur-on-cont));	

	transition: transform .3s, background .3s, color .3s, opacity .3s, position .3s, border .3s;
}

.navButtonCont {
	width: auto;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.navButton {
	width: auto;
	height: 100%;

	display: flex;
	flex-direction: row;

	border-radius: 100px;
	border-style: solid;
	border-width: 3px;
	border-color: transparent;

	pointer-events: none;
	
	transition: .3s;
}

.navButtonIconCont{
	height: 100%;
	aspect-ratio: 1 / 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.navButtonIcon {
	max-width: 18px;
	max-height: 18px;
	filter: var(--icon-filter);
	-webkit-filter: var(--icon-filter);
}

.navButtonTextCont {
	height: 100%;
	display: flex;
	align-items: center;
	padding: 0 15px 0 0;
}

.navButtonTextCont p { 
	color: var(--text-color-white);
}

.navButtonTextCont p {
	font-size: var(--size-01);
	font-weight: 300;
	margin: 0 !important;
}

.navPathDiv {
	height: 100%;
	width: auto;
	display: flex;
	justify-self: center;
	align-items: center;

	pointer-events: none;
	cursor: pointer;

	transition: transform .3s, background .3s, color .3s, opacity .3s, position .3s, border .3s;
}

.navPathDiv p {
	margin: 0 !important;
}

.navHomeButton .navButtonTextCont {
	@media screen and (max-width: 400px) {
		display: none;
	}
}

@media (hover: hover) {

	.nav:hover {
		background-color: transparent;
		border-color: transparent;

	}

	.nav:hover .navPathDiv {
		transform: translateX(-2.5px) translateY(5px);
		opacity: .5;
	}

 	.nav:hover .navButtonCont:hover > .navButton {
		background-color: var(--bg-on-blur);

		border-style: solid;
		border-width: 3px;
		border-color: var(--pebble-yellow);

		backdrop-filter: blur(var(--blur-on-cont));
		-webkit-backdrop-filter: blur(var(--blur-on-cont));	

		transform: translateX(1.25px) translateY(-2.5px);
	}

	.nav:hover .navButtonCont:not(:hover) > .navButton {
		transform: translateX(-2.5px) translateY(5px);
		opacity: .5;
	}

	.navSolo:hover .navButtonCont:not(:hover) > .navButton {
		transform: none !important;
 		opacity: 1 !important;
	}
}

/* === inline-nav === */

.inlineNavCont {
	width: fit-content;
	height: auto;
	box-sizing: border-box;
	display: flex;
	transition: transform .3s, background .3s, color .3s, opacity .3s, position .3s, border .3s, top .3s, bottom .3s;
}

.inlineNavCont .nav {
	width: 100%;
	height: 100%;

	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 10px 7px;

	border-style: none;

	background-color: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;	

	transition: transform .3s, background .3s, color .3s, opacity .3s, position .3s, border .3s;
}

.inlineNavCont .navButtonCont {
	height: 45px;
}

.inlineNavCont .navButton {
	border-style: solid;
	border-width: 1px;
	border-color: var(--border-color);
	border-radius: 100px;

	background-color: var(--bg-transp-color-2);
	backdrop-filter: blur(var(--blur));
	-webkit-backdrop-filter: blur(var(--blur));	
}

@media (hover: hover) {
	
	.inlineNavCont:has(.navButtonCont:hover) .navButtonCont:not(:hover) .navButton {
		opacity: .5 !important;
		transform: translateX(-2.5px) translateY(5px) !important;
	}

	.inlineNavCont .nav:hover .navButtonCont:not(:hover) > .navButton {
		transform: none;
		opacity: 1;
	}

	.inlineNavCont .navButtonCont:hover > .navButton {
		border-color: transparent !important;
		border-width: 1px !important;
		outline-style: solid;
		outline-width: 3px;
		outline-color: var(--pebble-yellow);
	}
}

/* === different navs === */

.mainNav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	@media screen and (max-width: 500px) {
		top: unset;
		bottom: 0;
	}
}

.glrThemeNav {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 20;
}

.glrMainNav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 5;
	@media screen and (max-width: 499px) {
		top: unset;
		bottom: 0px;
	}
	@media screen and (max-width: 1200px) and (min-width: 500px) {
	}
}

.glrImgNav {
	position: sticky;
	top: 0;
	bottom: unset;
	margin-left: auto;
	right: 0;
	z-index: 5;
	@media screen and (max-width: 499px) {
		position: fixed;
		top: unset;
		bottom: 0;
	}
	@media screen and (max-width: 1200px) and (min-width: 500px) {
		position: absolute;
		top: -65px;
		bottom: unset;
	}
}

.glrImgNav .navButtonTextCont {
	@media screen and (max-width: 499px) {
		display: none;
	}
}

.themeNav {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 20;
}

/* === gallery sub pages === */

.glrPageCont {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;

	@media screen and (max-width: 1200px) {
		flex-direction: column-reverse;
	}
}

.glrViewImgCont {
	width: calc(100% - 450px);
	height: auto;
	min-height: 100dvh;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;

	background-color: var(--bg-transp-color);
	backdrop-filter: blur(var(--blur));
	-webkit-backdrop-filter: blur(var(--blur));	

	@media screen and (max-width: 1200px) {
		width: 100%;
		height: auto;
		min-height: inherit;
	}
}

.glrViewImg {
	height: 100dvh;
	min-height: 500px;
	max-width: 100%;
	object-fit: contain;

	@media screen and (max-width: 849px) {
		min-height: 100%;
		height: 100%;
		max-height: 600px;
		margin-top: 68px;
	}
	@media screen and (max-width: 1200px) and (min-width: 850px) {
		min-height: 100%;
		height: 100%;
		max-height: 600px;
	}
}

.glrViewImgCont .glrBgImg {
	z-index: -1;
}


.glrSidebar {
	width: 450px;
	min-height: 100%;
	max-height: 100dvh;
	position: relative;
	box-sizing: border-box;
	border-right-style: solid;
	border-right-width: 1px;
	border-right-color: var(--border-color);
	overflow: auto;

	@media screen and (max-width: 499px) {
		width: 100%;
		margin-bottom: 65px;
		max-height: 100dvh;
		overflow: unset;
		position: unset;
	}
	@media screen and (max-width: 1200px) and (min-width: 500px) {
		width: 100%;
		max-height: unset;
		overflow: unset;
		margin-bottom: 40px;
	}
}

.glrSidebar article {
	width: 100%;
	box-sizing: border-box;
	padding: 20px;
	@media screen and (max-width: 1200px) {
		margin-top: 0;
	}
}

.glrSidebar h2 {
	font-weight: 500;
	font-size: var(--size-4);
	line-height: var(--line-height-4);
	margin-bottom: 15px;
	margin-top: 40px;
	scroll-margin-top: 40px;
}

.glrSidebar .simpleDivider {
	margin-top: 40px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

.glrViewTitle {
	font-size: var(--size-5);
	line-height: var(--line-height-5);
	font-weight: 500;
	color: var(--pebble-yellow);
	margin: 0;
}

.glrViewDate {
	color: var(--date-color);
	margin: 0;
}

.glrTag {
	text-decoration: none !important;
	padding: 5px 10px;
	background: var(--highlight-color) !important;
	border-radius: var(--rounding);
	color: var(--pebble-yellow);
	line-height: var(--line-height-5);
	transition: .3s;
	word-break: keep-all;
}

.glrTag:hover {
	background: var(--pebble-yellow) !important;
}

.glrAdultPopUp {
	position: absolute;
	height: 100%;
	width: 100%;

	background-color: var(--bg-on-blur);
	backdrop-filter: blur(40px);
	-webkit-backdrop-filter: blur(var(40px));
	
	display: flex;
	align-items: center;
	justify-content: center;
}

.glrAdultPopUpWindow {
	max-width: 90%;
	width: 600px;
	background-color: var(--bg-color);
	padding: 20px;
	box-sizing: border-box;
	border-radius: var(--rounding);
	border-style: solid;
	border-color: var(--border-color);
	border-width: 1px;
	box-shadow: 0px 10px 20px var(--shadow-light-color) !important;
}

.glrAdultPopUpText {
	margin: 0;
	color: var(--pebble-yellow);
	font-size: var(--size-4);
}

.glrAdultPopUpWindow .inlineNavCont {
	float: right;
}

.glrAdultPopUpWindow .inlineNavCont nav {
	justify-content: flex-end;
}

.adultPopUpWindow ul {
	padding-left: 30px;
}

.fancyLink {
	border-radius: var(--rounding);
	background-color: var(--highlight-color);
	padding: 5px 15px 5px 15px;
	margin-right: 10px;
	height: 26px;
	transition: .3s;
	width: fit-content;
	display: inline-block;

	backdrop-filter: blur(var(--blur));
	-webkit-backdrop-filter: blur(var(--blur));	
}

.fancyLink p {
	display: inline-block;
	color: var(--pebble-yellow);
	transition: .3s
}

@media (hover: hover) {
	.fancyLink:hover {
		background-color: var(--pebble-yellow);
	}

	.fancyLink:hover p {
		color: var(--bg-color);
	}

	.fancyLink:hover .textImageColored {
		fill: var(--bg-color);
		stroke: var(--bg-color);
	}
}

.fancyLink {
	text-decoration: none !important;
}

/* === commentario === */

.commentario-root {
	--cmntr-bg-highlight: var(--pebble-yellow) !important;

}

.comentario-root {

	@media screen and (max-width: 500px) {
		margin-bottom: 65px;
	}
}

.comentario-root-font p,.comentario-root-font span,.comentario-root-font div,.comentario-root-font button,.comentario-root-font textarea {
	font-family: var(--font) !important;
	font-weight: 300 !important;
	--cmntr-btn-color: var(--text-color-white) !important;
	--cmntr-btn-hover-color: var(--pebble-yellow) !important;
	--cmntr-btn-active-color: var(--pebble-yellow) !important;
	--cmntr-color: var(--text-color-white) !important;
	--cmntr-muted-color: var(--text-color) !important;
	--cmntr-input-bg: var(--bg-transp-color-2) !important;
	box-shadow: none !important;
	color: var(--text-color-white) !important;
}

.comentario-root textarea:focus {
	border-color: var(--pebble-yellow-transp) !important;
	box-shadow: none !important;
}

.comentario-root textarea {
	color: var(--text-color) !important;
}

.comentario-root .comentario-card {
	border-top: 1px solid var(--border-color) !important;
}

.comentario-root-font p strong {
	font-weight: 700 !important;
}

.comentario-root .comentario-btn-primary, .comentario-root .comentario-btn-secondary {
	color: var(--link-color) !important;
	--cmntr-btn-bg: var(--highlight-color) !important;
	border-radius: 100px !important;
	border: 1px solid var(--border-color) !important;
}

.comentario-root .comentario-card .comentario-card-expand-toggler, .comentario-root .comentario-card .comentario-card-expand-spacer{
	border-left: 1px solid var(--border-color) !important;
	opacity: 0px !important;
}

.comentario-root .comentario-btn {
	border-radius: 100px !important;
}

.comentario-root .comentario-btn:not(:disabled):active, .comentario-root .comentario-btn:not(:disabled):focus, .comentario-root .comentario-btn:not(:disabled):hover {
	color: var(--bg-color) !important;
	--cmntr-btn-hover-bg: var(--pebble-yellow);
}

.comentario-root .comentario-thread-toolbar .comentario-comment-count {
	text-align: left !important;
	margin-left: 10px;
}

.comentario-add-comment-host {
	border-radius: var(--rounding) !important;
	border-color: var(--border-color) !important;
	background-color: var(--bg-transp-color-2) !important;
	backdrop-filter: blur(var(--blur)) !important;
	-webkit-backdrop-filter: blur(var(--blur)) !important;	
}

.comentario-root .comentario-add-comment-host:not(.comentario-editor-inserted) .comentario-add-comment-placeholder {
	--cmntr-input-ph-color: var(--text-color);
}

.comentario-root a {
	--cmntr-link-color: var(--pebble-yellow) !important;
	--cmntr-link-hover-color: var(--pebble-yellow) !important;
}

.comentario-toolbar-section {
	margin-top: 50px !important;
}

.comentario-avatar {
	display: none !important;
}

.commentsNote {
	margin-bottom: -50px !important;
	max-width: calc(100% - 90px);
	font-size: var(--size-1);
	line-height: var(--line-height-1);
}