#website_preloader {
	/* 1. Position the div perfectly in the center of the screen */
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); /* Shifts it back by half its own width/height */

	/* 2. Center the content inside the div */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	/* Styling to keep it small */
	max-width: 400px;
	width: 100%;
	text-align: center;
}