body {
    touch-action: none;
    margin: 0;
    border: 0 none;
    padding: 0;
    text-align: center;
    background-color: #121314;
}

#canvas {
    display: block;
    margin: 0;
    color: #121314;
}

#canvas:focus {
    outline: none;
}

#spinner-container {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    visibility: hidden;
}

#spinner {
	position: relative;
	border: 8px solid #92a1b1;
	border-top: 8px solid #bfeadd;
	border-bottom: 8px solid #bfeadd;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	animation: spin 2s linear infinite;
	visibility: visible;
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}

