/* main css file for subtitle */

.subtitle {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 24px;
	background-color: rgba(0, 0, 0, 0.7);
	color: white;
	padding: 10px 20px;
	border-radius: 8px;
	opacity: 0;
	transition: opacity 0.5s;
	z-index: 99;
}
				
#subtitleContainer{
	display: none;
}

#audioPlayer{
	width: 95%;
	left: 2.5%;
	position: fixed;
	bottom: 20px;
	z-index: 1000;
}

.subtitle.bottom-center {
	position: fixed;
	bottom: 70px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 32px;
	background-color: transparent;
	color: white;
	text-align: center;
	opacity: 0;
	transition: opacity 0.5s;
	width: 80%;
	line-height: 1.3;
	font-family: sans-serif;
	text-shadow: 0 0 1px #000;
}

/* Size of project */

.size-of-project{
	position: fixed;
	top: 10px;
	left: 10px;
	background-color: rgba(255, 255, 255, 0.1);
	z-index: 99;
	color: grey;
	font-family: monospace;
	font-size: 14px;
}



