/*
*
*	index.css
*	2020 scripted by t.mashimo
*
*/

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	text-decoration: none;
}

html, body {
	width: 100%;
	height: 100%;
	background-color: black;
	color: white;
	font-size: 13px;
	/*font-family: "M+ 2m", sans-serif;*/
	font-family: 'Bodoni Moda', serif;
}

canvas {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

#ui {
	position: fixed;
	width: 100%;
	height: 100%;
	margin: auto;
	background-color: rgba(0,0,0,0.5);
	transition: all 5s;
	display: flex;
  	justify-content: center;
 	align-items: center;
}

#title {
	display: inline-block;
	font-size: 13px;
	text-align: center;
	width: 300px;
	height: 200px;
}

#loading {
	display: inline-block;
	border-radius: 5px;
	padding: 10px 20px;
	margin: 30px 0px;
	border: 1px solid rgba(255,255,255,0.2); 
	pointer-events: "none";
	transition: all 1s;
}
#loading img {
	width: 20px;
	vertical-align: bottom;
}

#mic_enable {
	display: none;
	opacity: 0;
	padding: 10px 20px;
	margin: 30px 0px;
	background-color: rgba(255,255,255,0.2);
	border-radius: 5px;
	cursor: pointer;
	transition: all 1s;
}

#mic_enable:hover {
	background-color: rgba(255,255,255,0.4);
}

#info {
	position: absolute;
	width: 100%;
	height: 100px;
	right: 0px;
	bottom: 0px;
	color: white;
}

#description {
	position: absolute;
	left: 0px;
	bottom: 0px;
	text-align: left;
	padding: 10px;
	font-size: 0.7em;
}

#debug {
	display:inherit;
	position: fixed;
	left: 0px;
	top: 0px;
	text-align: left;
	padding: 10px;
	font-size: 1em;
}

#status {
	position: absolute;
	right: 0px;
	bottom: 0px;
	text-align: right;
	padding: 10px;
	font-size: 0.7em;
}

#status a,
#status a:visited {
	display: inline-block;
	color: pink;
	transition: all 0.3s;
}
#status a:hover {
	color: white;
}
