html, body {
    margin: 0;
    padding: 0;
    background: #000;
    overflow: hidden;
    width: 100%;
	height: 100%;
	font-family: Georgia, "Times New Roman", serif;
	touch-action: none;
	overscroll-behavior: none;
}

#sicbogame {
    background: #000;
	position: fixed;
	left: var(--viewport-left, 0px);
	top: var(--viewport-top, 0px);
	width: var(--viewport-width, 100vw);
	height: var(--viewport-height, 100dvh);
	box-sizing: border-box;
	padding-top: env(safe-area-inset-top, 0px);
	padding-right: env(safe-area-inset-right, 0px);
	padding-bottom: env(safe-area-inset-bottom, 0px);
	padding-left: env(safe-area-inset-left, 0px);
}

canvas {
    display: block;
	width: 100% !important;
	height: 100% !important;
	margin: 0 !important;
	filter: saturate(1.08) contrast(1.03);
}
