/*
 * STRANGE NETWORKS - Stylesheet
 * 
 * Provides responsive layout configuration:
 * - Full viewport coverage with flexbox centering
 * - Canvas positioning and display optimization
 * - Color scheme definition (white background)
 * - Box model normalization for consistent rendering
 * 
 * Made by Jonas Kjeldmand Jensen - March 2026
 */

*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	width: 100%;
	height: 100%;
}

body {
	width: 100%;
	height: 100vh;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #ffffff;
}

canvas {
	display: block;
	margin: auto;
}