body {
	margin: 0px;
	overflow:hidden;
}

#img-container {
	position: absolute;
	width: 100vw;
	height: 100vh;
}

#img-container > img {
	position: absolute;
	display: block;
	width: 100vw;
	height: 100vh;
	object-fit: cover; /* or object-fit: contain; */
	transition: opacity 0.5s ease;
}

.img-hidden {
	opacity: 0;
}

#flex_container {
	position: absolute;
}

.boxed {
	margin: 10px;
	background-color: rgba(129, 129, 129, 0.56);
	border-radius: 5px;
	box-shadow: 10px 10px 50px rgba(0, 0, 0, 0.5);
}

.boxed > div:first-child {
	border-radius: 4px 4px 0 0;
	text-align: center;
	padding: 2px 10px;
	background-color: rgb(25, 76, 172);
	color: white;
	font-family: 'Patua One', cursive;
	font-size: 30px;
}

.boxed > div:not(:first-child) {
	text-align: left;
	padding: 2px 10px;
	color: white;
	font-family: 'Quicksand', sans-serif;
	font-size: 30px;
}

.boxed > div:not(:first-child) > div:first-child {
	width: 200px;
}
.boxed > div:not(:first-child) > div {
	display: inline-block;
}

#centerbox {
	width: 100%;
	position: absolute;
	bottom: 30%;
	text-align: center;
	color: white;
	text-shadow: 2px 5px 30px black;
}
#centerbox > div {
	max-width: 70%;
	display: inline-block;
}

#servername {
	font-family: 'Frijole', cursive;
	font-size: 70px;
	text-align: center;
}

#progressbox {
	width: 100%;
	font-family: 'Quicksand', sans-serif;
	font-size: 20px;
	color: white;
	text-shadow: 2px 5px 30px black;
}

#status {
	text-align: center;
}

#progressBar {
	background-color: black;
	width: 100%;
	height: 20px;
}

#progressBarInside {
	background-color: rgb(25, 76, 172);
	width: 0%;
	height: 20px;
}

#progressRight {
	text-align: right;
	width: 100%;
}

#progressLeft {
	position: absolute;
}
