body,
html {
	margin: 0;
	height: 100%;
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	padding: 40px;
	box-sizing: border-box;
}

img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

video {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	object-fit: cover;
}

.grid {
	gap: 5%;
	display: grid;
	width: 100vw;
	height: 100vh;
}

.grid-5-2 {
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(2, 1fr);
}
.grid-2-1 {
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(1, 1fr);
}

.grid img {
	margin: auto;
	object-fit: cover;
	display: block;
}
.grid div {
	display: inline-block;
	position: relative;
}
.grid canvas:first-child {
	position: relative;
}
