.canvas-container { 
	position: relative; 
	width: 100%; 
	max-width: 100%; 
	margin: 0 auto; 
	aspect-ratio: 480 / 280; 
}

canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
}

.logo-center {
	position: absolute; top: 50%; left: 50%; width: 32px; height: 32px; margin-top: -16px; margin-left: -16px;
	z-index: 10; animation: coreCycle 5s ease-in-out infinite;
}

@keyframes coreCycle {
	0%, 100% { transform: scale(1); }
	20% { transform: scale(0.94); }
	35% { transform: scale(1.10); }
	45% { transform: scale(0.98); }
}
