@font-face {
	font-family: 'Noto Sans';
	src: url("/assets/NotoSans.woff2") format("woff2");
	font-display: swap;
}

@font-face {
	font-family: "remixicon";
	src: url("/assets/remixicon.woff2") format("woff2");
	font-display: swap;
}

[class^="ri-"],
[class*="ri-"] {
	font-family: 'remixicon' !important;
	font-style: normal;
	font-size: 1.5rem;
	color: var(--border);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


.ri-pause-fill:before{content: "\efd7"}
.ri-stop-fill:before{content: "\f1a0"}
.ri-repeat-fill:before{content: "\f073"}
.ri-play-list-add-fill:before{content: "\f00e"}
.ri-play-fill:before{content: "\f00a"}
.ri-skip-forward-fill:before{content: "\f143"}
.ri-settings-fill:before{content: "\f0ed"}
.ri-menu-4-fill:before{content: "\ef35"}
.ri-search-2-line:before{content: "\f0cd"}
.ri-github-fill:before{content: "\edca"}
.ri-telegram-line:before{content: "\f1f0"}
.ri-magic-fill:before{content: "\eee9"}
.ri-play-list-2-fill:before{content: "\f00c"}
.ri-forward-10-fill:before{content: "\f32a"}
.ri-replay-10-fill:before{content: "\f351"}
.ri-home-fill:before{content: "\ee26"}


:root {
	--bg: none;
	--accent: none;
	--text: none;
	--border: none;
}

* {
	-webkit-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}

html,
body {
	margin: 0;
	padding: 0;
	height: 100%;
}

body {
	background: var(--bg);
	font-family:'Noto Sans', sans-serif;
	color: var(--text);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: space-around;
}


.hide {
	display: none;
}

.show {
	display: flex;
}


@keyframes appear {
	from {
		opacity: 0;
		transform: translateY(1rem)
	}
}

nav {
	background-color: var(--accent);
	border-radius: 0.6rem;
	border: 1px solid var(--border);
	box-shadow: 0 0.1rem 0.3rem #0003;
}

nav button {
	padding:0.5rem;
	margin: 1px 0;
	width: 4rem;
	border-radius: 0.5rem;
}


[data-badge]:after {
	font-family: 'Noto Sans';
	content: attr(data-badge);
	line-height: 1rem;
	-webkit-transition: background 0.5s, color 1s;
	-o-transition: background 0.5s, color 1s;
	transition: background 0.5s, color 1s;
}

[data-badge^="-"]:after,
[data-badge=""]:after,
[data-badge="0"]:after {
	display: none;
}


#subtitleContainer {
	width: 80%;
	position: relative;
	bottom:10%;
	pointer-events: none;
}

@media (min-width:600px) {
	#subtitleContainer {
		width: 50%;
	}
}