/* --- Reset & Base --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    background-color: #000000;
    font-family: Myriad, Verdana, Helvetica, Arial, sans-serif;
    color: #ffffff;
}
div {
	display: flex; /*— Enables the flexbox layout. */
	justify-content: center; /*— Centers contents horizontally.*/
	align-items: center; /*— Centers contents vertically.*/
	height: 100vh;
}