:root{
	--main: #ffffff; /*進捗バーの色*/
	--sub: #ffffff; /*文字の色*/
	--text: #ffffff; /*パーセントの色*/
	--back: #f0f0f0; /*背景の色*/
}
@font-face {
	font-family: "marukiya";
	src: url("./marukiya.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: "Melonano";
	src: url("./Melonano_Ver.1.0.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}


html{
	font-size: 16px;
	font-family: "marukiya", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.2rem;
	font-feature-settings: "palt";
}

body{
	margin: 0;
	padding: 0;
	color: var(--text);
	overflow: hidden;
}
body {
    background: #2e222f;
}

canvas { display: block; }

.main{
	pointer-events: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}
.subscriber{
	color: var(--main);
	font-size: 3rem;
	font-weight: 900;
	margin-bottom: min(50vh,50vw);
}

img{
	width: 200px;
	image-rendering: pixelated;
	image-rendering: -webkit-crisp-edges;
	image-rendering: -moz-crisp-edges;
	-ms-interpolation-mode: nearest-neighbor;
}

.bar{
	position: relative;
	width: 200px;
	height: 44px;
}
.bar .pixels{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.bar img:nth-child(2) {
	/* bar_inner.png */

}

.link{
	position: fixed;
	margin: auto;
	text-align: center;
	bottom: 50px;
	right: 0;
	left: 0;
	font-size: 1.6rem;
	color: white;
}