body {
	margin: 0;
	padding:0;
	box-sizing: border-box;
}

html body {
	overflow: hidden;
}

#info {
	font-family: Arial, Helvetica, sans-serif;
	position: absolute;
	top: 4vh;
	left: 50%;
	font-size: 2.5vw;
	color: white;
	transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
  }

.canvas {
	position: absolute;
	width: 100%;
	height: 100%;
}

.slider {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1vh;
	display: flex;
    align-items: center;
	justify-content: center;

	color: white;
	position: absolute;

	width: 200vw;
	height: 2.5vh;
	background-color: #47163d;
	opacity: 0.9;
	border-radius: 0%;

	top: calc(8% - 1vh);
	left: calc(50% - 100vw);
}

.logo_container {
	position: absolute;
	width: 32vh;
	height: 32vh;
	top: calc(50% - 16vh);
	left: calc(50% - 16vh);
	background-image: url('../assets/Logo_Animated.svg');
	background-size:125%;
	background-position: center;
	border-radius: 50%;
}
