ui/world/nametag.razor.scss
NameTag {
	width: 100%;
	justify-content: center;
	align-items: center;
	gap: 32px;

	.avatar {
		width: 64px;
		height: 64px;
		border-radius: 100px;
		background-position: center;
		background-size: cover;
	}

	.name {
		font-size: 64px;
		font-family: Bahnschrift;
		font-weight: bold;
		color: white;
		text-shadow: 6px 6px 0px #000a;
	}
}