@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: 6.25rem;  /* 100px */ 
	--line-height-main-title-mobile: 3.75rem;  /* 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;
}

.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 { 
	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: underline;
    text-decoration-color: var(--link);
	text-decoration-thickness: 0.6em;
	text-decoration-skip-ink: none;
	text-underline-offset: -0.25em;
}

p a:hover, li a:hover,h2 a:hover, p a:active, li a:active, h2 a:active {
	color: var(--pebble-yellow);
	text-decoration: underline;
    text-decoration-color: var(--pebble-yellow-transp);
	text-decoration-thickness: 0.6em;
	text-decoration-skip-ink: none;
	text-underline-offset: -0.25em;
}

/* 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: 850px) {
		top: 60px;
		left: -110%;
		/*width: 100vw;*/
		height: calc(100vh - 50px);
		height: calc(100dvh - 50px);

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

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

.sidebarThemeAlphaContainer {
	max-height: 0px;
	width: 100%;
	overflow: hidden;
	transition: .3s;
	padding-bottom: 4px;
	padding-top: 0px;
	margin-top: -4px;
	opacity: 0;
}

.colorSchemeSwitch {
	width: calc(100% - 20px);
	margin-left: 20px;
}

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

.pageHeaderContainer {
	position: fixed;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;

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

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

	z-index: 30;

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

	@media screen and (max-width: 850px) {
		top: 0;
		width: 100%;
		transform: none;
	}
}

.pageHeaderContainer h1 {
	color: var(--text-color-white);
	font-weight: 500;
	font-size: var(--size-4);
}

#desktopHeader {
	display: flex;
	@media screen and (max-width: 850px) {
		display: none;
	}
}

#mobileHeader {
	display: none;
	@media screen and (max-width: 850px) {
		display: block;
		z-index: 999;
		height: 60px;
		transition: .3s;
	}
}

@media screen and (max-width: 850px) {
	#mobileHeader h1 {
		position: fixed;
		left: 50%;
		margin: 0;	
		top: 30px;
		transform: translateX(-50%) translateY(-50%);
	}
}

@media screen and (max-width: 850px) {
	.hamburgerCont{
		position: fixed;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 60px;
		height: 60px;
	}
}

.hamburger{
	display: none;
	@media screen and (max-width: 850px) {
		display: block;
		height: 25px;
		fill: var(--text-color);
	}
}

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

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

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

.pageContentWrapper {
	width: 100%;
	min-height: calc(100% - 75px);
	height: auto;
	display: flex;
	justify-content: center;
}

.pageContent {
	width: calc(100% - 120px);
	align-self: flex-start;
	min-height: calc(100dvh - 226px);
	min-height: calc(100vh - 226px);

	margin: 90px 60px 60px 60px;

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

	animation: 1s ease 0s 1 slideInFromBottom;

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

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

/* === text === */

#date, .date {
	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: 0;
	scroll-margin-top: 100px;
}

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

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

}

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

.largeBottomMargin {
	margin-bottom: 40px !important;
}

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

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

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

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

.pageContent ul {
	margin-bottom: 40px;
	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;
}

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

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

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

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

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

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

/* === gallery === */

.galleryContainer {
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
}

.galleryItemContainer {
	min-height: 200px;
	max-height: 400px;
	width: calc(100% / 3);
	max-width: 400px;
	min-width: 200px;
	aspect-ratio: 1 / 1;
	display: flex;
	align-items: start;
	justify-content: center;
	
	@media screen and (max-width: 850px) {
		width: calc(100%);
		margin-bottom: 20px;
	}
}

.galleryItem {
	height: calc(100% - 20px);
	width: calc(100% - 20px);

	border-radius: var(--rounding);
	overflow: hidden;

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

	transition: .3s;

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

}

.galleryItemContainer:hover > .galleryItem {
	min-height: calc(100% - 20px);
	height: auto;
	z-index: 5;
	outline-width: 3px;
	outline-color: var(--pebble-yellow);

	transform: translateY(-7.5px) translateX(15px);

}

.galleryItemContainer:hover .galleryTextContainer {
	padding-top: 11px;
	padding-bottom: 11px;
}

.galleryItemContainer:hover .galleryText {
	white-space: normal;
	line-height: var(--line-height-2) !important;
	display: block;
	mask-image: none;
}

.galleryItemContainer:hover > .galleryItem > .galleryImageContainer {
	height: calc((100% / 3) * 2 - 55px);
}

.galleryImageContainer {
	width: 100%;
	aspect-ratio: 4 / 3.2;
	display: flex;
	justify-content: center;
	align-items: center;

	overflow: hidden;
}

.galleryImage {
	object-fit: cover;
	min-width: 100%;
	min-height: 100%;	
}

.galleryTextContainer {
	width: 100%;
	aspect-ratio: 4 / .8;
	display: flex;
	flex-direction: column;

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

	justify-content: center;

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

}

.galleryText {
	margin-bottom: 0 !important;
	white-space: nowrap;
	overflow: hidden;
	width: calc(100% - 40px);
	margin-left: 20px;
	mask-image: -webkit-linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 10%);
}

.galleryDate {
	display: none;
}

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

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

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

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

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

.blogDate {
	float: right;
	display: block;
	margin-top: 0;
	@media screen and (max-width: 1170px) {
		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: 50px;
	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: .5s;

	z-index: 99999;

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

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

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

.indexHeaderButtonContainer:hover > .indexHeaderButton {
	border-color: var(--pebble-yellow);
	border-width: 3px;
	opacity: 1;
	@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;

	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;

	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: -20px !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: 30px !important;
	}
}

.widePebbleImage {
	object-fit: contain;
	max-width: 100%;
	height: auto;	

	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;
	filter: var(--colored-icon-filter);
	-webkit-filter: var(--colored-icon-filter);
}

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

.homePageInfoText {
	margin-bottom: 0 !important;
	margin-left: 10px;
	@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: 10px;

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

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

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

.indexSocials:hover .indexSocialsButton:not(:hover) {
	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;
	}
}

/* === misc === */

.changelogList{
	padding-right: 20px;
}

/* === project === */

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

	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: stretch;

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

	transition: .3s;

	scroll-margin-top: 100px;
}

.projectImgContainer {
	max-width: 300px;
	display: flex;

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

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

.projectImg {
	max-width: 300px;
	object-fit: contain;
	max-width: 100%;
	height: auto;	

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

.projectTextContainer {
	flex-grow: 1;
	padding: 20px 30px 20px 30px;
	max-width: calc(100% - 360px);
	
	display: flex;
	align-items: center;

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

.projectTextContainer p {
	margin-bottom: 0;
}

.projectFooter {
	width: 100%;
	min-height: 50px;
	
	border-top-style: solid;
	border-top-width: 1px;
	border-top-color: var(--border-color);
}

.projectFooterLeft {
	text-align: left;
	float: left;
}

.projectFooterRight {
	text-align: right;
	float: right;
}

.projectFooter p {
	margin-bottom: 0;
	opacity: .3;
	padding: 10px 20px 10px 20px;
}

.projectFooter a {
	color: var(--text-color) !important;
}


.projectFooterHighlightText {
	font-weight: 500;
}