:root {
	--background-primary: #30243A;
	--background-secondary: #281E30;
	--background-tertiary: #201826;
	--surface-primary: #43364F;
	--accent-color: #FF84BD;
	--text-color: #DECAF5;
	--subtext-color: #CBB8E0;
}

body {
	margin: 0;
	background-color: var(--background-primary);
	color: var(--text-color);
	font-family: 'Monorale', sans-serif;
	font-weight: 500;
	font-size: 20;
	line-height: 1.5;
	overflow-x: hidden;
}

* {
	box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6, p {
	margin: 0;
}

/* Blobs */
.blobs-container {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
	overflow: hidden;
}

.blobs-container-scaler {
	position: absolute;
	width: 100%;
	height: 100%;
}

.blob {
	position: absolute;
	height: 100%;
}

.blob-darker {
	filter: brightness(70%) saturate(120%);
}


/* Landing page */
.landing {
	overflow: hidden;
}

.landing-content {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	padding: 20px;
	z-index: 5;
}

.pfp {
	width: 150px;
	height: 150px;
	margin-bottom: 15px;
	padding: 6px;
	border: 4px solid var(--accent-color);
	border-radius: 50%;
}

.landing-title {
	font-size: 5em;
	font-weight: 900;
	line-height: 1.1;
	letter-spacing: 0.15em;
}

.landing-title-highlight {
	color: var(--accent-color);
}

.landing-subtitle {
	color: var(--subtext-color);
	font-size: 1.25em;
	font-weight: 500;
	letter-spacing: 0.08em;
}

.socials-container {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;

	background-color: var(--surface-primary);
	margin: 20px 0px;
	border-radius: 8px;
	padding: 0.2em;
}

.social {
	margin: 0.5em;
}

.social svg {
	height: 1.8em;
	fill: var(--text-color);
}

.social svg:hover {
	fill: var(--accent-color);
}

.visit-counter-container {
	height: 150px;
}


/* Small screens */
@media only screen and (max-width: 768px) {
	/* Reduce text size */
	.landing-title {
		font-size: 3em;
	}

	.landing-subtitle {
		font-size: 1.1em;
	}

	/* Increase button size so its easier to tap */
	.social svg {
		height: 2em;
	}

	/* Shift blobs so text is readable */
	.blobs-container-scaler {
		transform: scale(170%);
	}

	/* Hide darker blobs for performance */
	.blob-darker {
		display: none;
	}
}