:root {
	--pink: #fcbddb;
	--text-color: #ffffff;
	--letter-box-height: 6vh;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	color: var(--pink);

	/* BACKGROUNDS */
	background: linear-gradient(135deg, #2d234c 20%, #123c70 100%);
	/* midnight blue */
	/* background: linear-gradient(135deg, #171421 20%, #132337 100%); */
	/* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); dawn */
	/* background: #1a1a2e; navy */

	overflow: hidden;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	font-family: 'Inter', sans-serif;
}

canvas {
	display: block;
	background-color: transparent;
}

/* Ensure the canvas fills its parent and is responsive */
#snowCanvas {
	width: 100vw;
	height: 100vh;
}

.logo {
	max-width: 17vw;
	width: 95%;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.letterbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 9999;
	pointer-events: none;
}

.letterbox::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--letter-box-height);
	background-color: var(--pink);
}

.letterbox::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: var(--letter-box-height);
	background-color: var(--pink);
}

footer {
	color: var(--pink);
	position: fixed;
	bottom: 8vh;
	left: 0;
	width: 100%;
	text-align: center;
	padding: 0;
	font-size: 0.55vw;
	z-index: -99;
	display: flex;
	justify-content: center;
}