/* Default stylesheet and tools */
body,
html {
	background: rgb(245, 245, 245);
	padding: 0;
	margin: 0;
	overflow: hidden;
	display: flex;
    justify-content: center; 
    align-items: center; 
}

#container {
	position: relative;
	width: 100vw;
	height: 100vh;
	display: flex;
    justify-content: center; 
    align-items: center; 
	overflow: auto;
}

canvas {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 300px;
	display: none;
}

video {
	display: none
}

#rect {
	width: 300px;
	height: 300px;
	background: rgba(0, 0, 0, 1);
	transition: all 0.2s ease;
	color: white;
	padding: 10px;
	line-height: 1;
	font-size: 11px;
	position: absolute;
	left: 50%;
	transform-origin: top left;
	opacity: 0;
}

#myvideo {
	display: none;
}

#sound {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99999999999;
}