@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.roboto-100 {
	font-family: "Roboto", sans-serif;
	font-optical-sizing: auto;
	font-weight: 100;
	font-style: normal;
	font-variation-settings:
		"wdth" 100;
}

body {
	width: 100vw;
	height: 100vh;
	height: 100svh;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 2rem;
	gap: 1rem;
}

p {
	margin: 0;
}

a {
	color: inherit;
	text-decoration: none;
	font-weight: 400;
}

canvas {
	width: 512px;
	height: 512px;
	background-color: black;
}

#token-span {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 1rem;
	font-size: 1rem;
	color: #808080;
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

#token-span > span {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	filter: blur(4px);
	transition: filter 0.2s;
}

#token-span > span:hover {
	filter: none;
}

#token-span form {
	display: flex;
	align-items: center;
	gap: 0.25rem;
}

#token-span input {
	color: #808080;
	background-color: transparent;
	border: 1px solid #808080;
	border-radius: 4px;
	font-size: 1rem;
}

#token-span button {
	color: #808080;
	background-color: transparent;
	border: 1px solid #808080;
	border-radius: 4px;
	font-size: 1rem;
}
