/* HEX STUFF */

svg {
	position: fixed;
}

#screen {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.hexagon {
	transition: .2s;
	animation: hexanimation 2s linear infinite alternate;
}

.svgtext {
	pointer-events:none;
}

@keyframes hexanimation {
	from {
		stroke-width: 1px;
	}
	to {
		stroke-width: 5px;
	}
}

.hexagon {
	fill: red;
}

.hexagon:hover {
	fill: green;
}