:root {
    --bloom-alpha: 0.45; /* Define a global variable */
  }

html, body {
	margin: 0;
	padding: 0;
}

body {
	height: calc(var(--vh, 1vh) * 100);
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	background-color: #1d1d1d;
	color: #888888;
	font-family: 'Bebas Neue', 'Lexend', 'Teko', sans-serif;
	
	opacity: 0;
	visibility: hidden;
	transition: opacity 1.2s ease-in-out;
}

.page-container {
    height: 100%;
    width: 100%;
    position: relative;
    min-height: 60vh;
}

.content-wrapper {
    width: 100%;
    /* height here can fix centering divs, ie socials page*/
}

h1 {
	position: relative;
	color: #ffffff;
	font-family: 'Bebas Neue', 'Lexend', 'Teko', sans-serif;
	font-weight: normal;
	margin: 0;
	z-index: 1;
	
	animation: glowPulse 4s ease-in-out infinite;
}

h1::before {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	color: #ffffff;
	filter: blur(18px);
	opacity: 0.20;
}

a:hover {
    color: #333333;
}
a {
    color: #FFFFFF; text-decoration: none;
}

body.font-loading {
	opacity: 0;
	transition: opacity 2.8s ease-in-out;
	visibility: hidden;
}

body.font-loaded {
	opacity: 1;
	visibility: visible;
}

@keyframes glowPulse {
	0%, 100% {
		text-shadow: 0 0 6px rgba(255,255,255,0.2), 0 0 20px rgba(255,255,255,0.1);
	}
	50% {
		text-shadow: 0 0 8px rgba(255,255,255,0.25), 0 0 25px rgba(255,255,255,0.15);
	}
}