/* ------------------------ */
/* Hexagon - Pár stíluselem */
/* ------------------------ */
body {
	width: 100%;
	min-height: 100%;
	padding: 0px;
	margin: 0px;
	overflow: hidden;
	
}

/* canvas { */
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
/* } */

.canvas-wrap {
	position: relative;
	display: inline-block;
}

#myCanvas {
	display: block;
	overflow: hidden;
}

.canvas-text {
	position: absolute;
	overflow: hidden;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/*font-size: 64px;*/
	font-size: clamp(32px, 6vw, 120px);
	font-weight: 800;
	text-align: center;


	/*background: linear-gradient(90deg, #ff00cc, #00ccff);*/
	background: linear-gradient(90deg, rgba(255, 0, 204, 0.36), rgba(0, 204, 255, 0.6));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}