* {
	margin: 0;
	padding: 0;
}

html,
body {
	overflow: hidden;
	background-color: black;
}

canvas {
	position: fixed;
	top: 0;
	left: 0;
	outline: none;
}

.image {
	position: absolute;
	display: flex;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
	filter: brightness(0.5) blur(1px);
}

img {
	object-fit: cover;
	object-position: 50% 50%;
	width: 100%;
	height: auto;
}