html,
body {
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
	overscroll-behavior: none;
	touch-action: none;
	-webkit-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
    position: relative;
    isolation: isolate;
}
#surface {
	width: 100vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	touch-action: none;
}
#runeDisplay {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: absolute;
    top:0px;
    left:0px;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.runeIcon {
    flex: 1 1 0;
    min-width: 0;
    aspect-ratio: 1;
    max-height: 100%;
    object-fit: contain;
    image-rendering: pixelated;
}