.ftsz1 {
	margin: 4px 2px;
	font-size: 12px;
	color: #ffffff;
}

.ftsz2 {
	margin: 4px 2px;
	font-size: 16px;
	color: #ffffff;
}

.ftsz3 {
	margin: 4px 2px;
	font-size: 24px;
	color: #ffffff;
}

.ftsz4 {
	margin: 4px 2px;
	font-size: 32px;
	color: #ffffff;
}

.ftsz5 {
	margin: 4px 2px;
	font-size: 48px;
	color: #ffffff;
}

.ftsz6 {
	margin: 4px 2px;
	font-size: 64px;
	color: #ffffff;
}

/* vietnamese */
@font-face {
  font-family: 'Inconsolata';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/inconsolata/v32/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8WRL2l2eY.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Inconsolata';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/inconsolata/v32/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8WRP2l2eY.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Inconsolata';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  src: url(https://fonts.gstatic.com/s/inconsolata/v32/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8WR32lw.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.console {
	position: absolute;
	top: 2%;
	left: 27%;
	width: 46%;
	height: 13%;
	border: 1px solid grey;
	border-radius: 15px;
	background-color: black;
	color: white;
	font-size: 16px;
	transition: 0.2s;
	z-index: 9999;
}

.console:hover {
	transform: scale(1.05);
}

.node {
	position: absolute;
	border: 2px solid white;
	border-radius: 50px;
	width: 100px;
	height: 100px;
	background-color: black;
	color: white;
	overflow: visible;
	text-align: center;
	user-select: none;
}

.node_text_type {
	position: absolute;
	border: 0px solid black;
	width: 100px;
	height: 100px;
	background-color: rgba(0, 0, 0, 0);
	color: white;
	overflow: visible;
	text-align: center;
	user-select: none;
}

.node_conn {
	position: absolute;
	border: 2px solid white;
	width: 1px;
	z-index: -10;
}

.node_desc {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 12px;
	color: white;
	white-space: nowrap;
}

.transfer {
	position: absolute;
	border: 2px solid white;
	z-index: 9998;
	height: 40px;
	width: 100px;
	border-radius: 10px;
	background-color: black;
	color: white;
	overflow: visible;
	text-align: center;
	user-select: none;
}

.transfer:hover {
	transform: scale(1.05);
}

@keyframes corrupted_text {
	0%,100% {
		text-shadow: -7px -7px 7px #5555ff, 4px 4px 4px #ff5555;
		color: white;
	}
	25% {
		text-shadow: -7px 7px 7px #5555ff, 4px -4px 4px #ff5555;
		color: #eeddff;
	}
	50% {
		text-shadow: 7px 7px 7px #5555ff, -4px -4px 4px #ff5555;
		color: white;
	}
	75% {
		text-shadow: 7px -7px 7px #5555ff, -4px 4px 4px #ff5555;
		color: #ffddee;
	}
}

.corrupted {
	animation: corrupted_text 0.5s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}