body {
	color:white;

	display: flex;
	justify-content: center; /* aligns the entire things */
	align-items: center; /* aligns the things inside */
	flex-direction: column;

	/* cursor: url("assets/raccoon-cursor.png"), auto; */
	/* background: url("assets/space2.gif"); */
	background: url("assets/space2.gif");
	min-height: 100vh;

	margin: 0;
	padding: 0;

	font-size: calc(1.15rem + 0.25vw);
}

body::after {
	content: "";
	
	background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.06), rgba(0, 255, 0, 0.02), rgba(0, 0, 255, 0.06));
	background-size: 100% 2px, 3px 100%;

	width: 100%;
	height: 100%;

	position: fixed;
	top: 0;
	left: 0;
	/* z-index: -1; */
	pointer-events: none;
}

.container {
	background: black;
	padding: 2.5%;

	border: 5px solid white;
	border-radius: 15px;
}

#racc1 {
	float: left;
	margin-right: 10%;
	width: 25%;
}

#racc2 {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;

	margin-top: 75px;
	color: white;
	background: black;
}
