body {
	width: 100vw;
	height: 100vh;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	font-family: 'Circular', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
	overflow: hidden;
}

@font-face {
	font-family: 'Circular';
	src: url('./CircularStd-Black.otf');
}

.visualizer {
	display: flex;
	width: 100vw;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
}

.node {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: hsl(300, 0%, calc(var(--level, 0.1) * 10%));
	margin: auto;
}

.circle {
	position: absolute;
	width: 20vh;
	height: 20vh;
	border-radius: 9999px;
	transform: scale(calc(0.5 + var(--level, 0.1) * 3), calc(0.5 + var(--level, 0.1) * 3));
	transform-origin: center;
}

#bass1 {
	background: var(--color, white);
}

#bass1 img {
	object-fit: cover;
	object-position: center;
	width: 100%;
	height: 100%;
	border-radius: 9999px;
}

#bass2 {
	background: var(--color, aquamarine);
}

#bass3 {
	background: var(--color, darkturquoise);
}

#bass4 {
	background: var(--color, darkcyan);
}

#title {
	position: absolute;
	bottom: 8rem;
	color: white;
	font-size: xx-large;
}

#artist {
	position: absolute;
	bottom: 6rem;
	color: white;
	font-size: x-large;
}

.time {
	position: absolute;
	width: 100%;
	height: 8rem;
	bottom: 0;
	color: white;
	font-size: larger;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

#bar-bg {
	position: relative;
	width: 64rem;
	height: 1rem;
	border-radius: 9999px;
	background: rgba(255, 255, 255, 0.5);
}

#bar {
	width: calc(var(--time, 0.1) * 64rem);
	height: 1rem;
	border-radius: 9999px;
	background: white;
	position: absolute;
	transform-origin: left;
	left: 0;
}

#current {
	margin-right: 16px;
}

#max {
	margin-left: 16px;
}

.help {
	position: absolute;
	left: 2rem;
	bottom: 2rem;
	width: 16rem;
	height: 36rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 25px;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
	color: white;
    z-index: 20;
    font-size: 12px;
}

a {
	color: aquamarine;
}

.keybinds {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 2px;
}

.keybind {
	margin: 4px;
}

.key {
	min-width: 8px;
	width: 8px;
	height: 8px;
	background: black;
	border-radius: 8px;
	padding: 4px 8px;
	margin: 2px;
}

.marg {
	margin: 2px;
}

.hidden {
	display: none;
}