@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: 7px;

	/* === text sizes === */
	--size-0: 0.875rem; /* 14px */
	--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-2: 1.625rem;  /* 26px */ 
	--line-height-3: 1.75rem; /* 28px */ 
	--line-height-4: 1.625rem;  /* 26px */ 
	--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) var(--bg-color);
	background-color: var(--bg-color);

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

@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.5px;
	text-decoration-color: var(--pebble-yellow);

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

	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: inherit;
}

/* 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 */

.sidebar {	
	position: fixed;
	display: flex;
	flex-direction: column;
	align-items: left;

	overflow-y: auto;

	transform: none;

	width: 250px;
	height: 100vh;
	height: 100dvh;

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

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

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

	@media screen and (max-width: 1200px) {
		top: 0;
		left: -110%;
		/*width: 100vw;*/
		height: 100vh;
		height: 100dvh;

		align-items: center;

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

		transition: .3s;

		z-index: 5;

		overflow: auto;
	}
}

.sidebarContent{
	margin-bottom: 60px;
	
	@media screen and (max-width: 1200px) {
		padding-top: 50px;
		width: 300px;
		max-width: 90%;
		min-width: 200px;
	}
}

.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;
	max-width: 60%;
}

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

.sidebarSectionTitle {
	font-size: var(--size-0);
	font-weight: 500;
	opacity: .5;
	margin: 25px 0 5px 20px;
}

.sidebarButtonShelf{
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: end;
	width: 100%;
}

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

	width: 100%;
	height: 45px;
	perspective: 800px;
	z-index: 1;

	perspective: 800px;
}

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

	width: calc(100% - 20px);
	height: 45px;

	border-style: solid;
	border-width: 0px;
	border-radius: var(--rounding);
	border-color: var(--border-color);

	transition: .3s;
}

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

@media (hover: hover) {
	.sidebarButtonShelf:hover .sidebarButton {
		opacity: .5;
		margin-bottom: -5px;
		margin-left: -10px;
	}

	.sidebarButtonContainer:hover > .sidebarButton {
		border-color: var(--pebble-yellow);
		border-width: 3px;
		background-color: var(--sidebar-button-color);

		opacity: 1;
		margin-left: 5px;
		margin-bottom: 2.5px;
	}

	.sidebarButtonContainer:hover > .sidebarButtonActive {
		background-color: var(--highlight-2-color);
	}

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

.sidebarButtonText {
	font-size: var(--size-1);
	color: var(--text-color-white);
}

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

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

/* === 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-2);
	backdrop-filter: blur(var(--blur));
	-webkit-backdrop-filter: blur(var(--blur));

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

	transition: .3s;

	z-index: 11;
}

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

	@media screen and (max-width: 1200px) {
		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: 10;

	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);

	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;
	}
}

.pageContentWrapper {
	width: 100%;
	min-height: calc(100vh - 76px);
	min-height: calc(100dvh - 76px);
	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;
	min-height: calc(100dvh - 226px);
	min-height: calc(100vh - 226px);

	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;
	}
}

.narrow {
	max-width: 800px;	
}

.wide {
	max-width: 1200px;
}

footer {
	width: 100%;
	min-height: 75px;
	background-color: var(--bg-transp-color);

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

	text-align: right;

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

footer p {
	margin-right: 50px;
	margin-left: 50px;
	opacity: 1;

	@media screen and (max-width: 850px) {
	margin-right: 20px;
	margin-left: 20px;
	}
}

footer p span {
	@media screen and (max-width: 850px) {
		display: inline-block;
	}
}

/* === 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;
}

.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;

}

.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;
}

.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;
}

.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);
}

.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;
	}
}

.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;
	}
}

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

.indexHeader {
	display: flex;
	flex-direction: row;
	position: fixed;
	top: 50px;
	right: 181px;
	height: auto;
	width: auto;
	
	background-color: var(--bg-transp-color-2);
	backdrop-filter: blur(var(--blur));
	-webkit-backdrop-filter: blur(var(--blur));

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

	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;
	}
}

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

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

	perspective: 800px;

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

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

	width:auto;
	height: 45px;

	border-style: solid;
	border-width: 3px;
	border-radius: 100px;
	border-color: rgba(0,0,0,0);

	background-color: var(--indexHeader-button-color);
	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);
}

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

.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;
	}
}

.homepage {
	max-width: 2000px;
	width: calc(100% - 200px);
	margin: 60px;
	padding: 0px;

	animation: none !important;

	@media screen and (max-width: 1200px) {
		margin: 90px 20px 60px 20px;
		width: calc(100% - 40px);
	}
}

.homePageIntro {
	min-height: calc(100vh - 120px);
	min-height: calc(100dvh - 120px);
	margin-bottom: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	@media screen and (max-width: 850px) {
		justify-content: center;
		min-height: auto;
	}
}

.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: 1200px) {
		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: 1200px) {
		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;
	}
}

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

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

	@media screen and (max-width: 850px) {
		max-height: 250px;
	}
}

.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: 1200px) 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: 1200px) 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: 1200px) {
		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;

	margin-top: 70px;

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

	@media screen and (max-width: 800px) {
		margin-top: 40px;
	}
}

.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);
	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);
}

@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);
		backdrop-filter: blur(var(--blur));
		-webkit-backdrop-filter: blur(var(--blur));

		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: 600px;
	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;
}

.changelogViewLink {
	border-radius: var(--rounding);
	background-color: var(--highlight-color);
	padding: 5px 15px 5px 15px;
	margin-right: 10px;
	height: 26px;
	transition: .3s;
}

.changelogViewLink p {
	display: inline-block;
	color: var(--pebble-yellow);
}

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

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

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

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

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