*{
	margin:0;
	padding:0;
	text-decoration: none;
	font-family: "Montserrat";
}

body{
	height: 60vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color:#333333;
	
}

video {
  left: 50%;
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.bg{
	width: 500px;
	height: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: -100;
	
}
.container{
	color:#FFFFFF;
	text-transform: uppercase;
	text-align: center;
}
h1{
	font-size: 80px;
	margin-bottom: 40px;
}

h3{
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 4px;
	margin-bottom: 20px;
}
.progress-bar{
	width: 350px;
	height: 12px;
	background-color: #D1D1D1;
	margin: auto;
	margin-bottom: 100px;
	opacity: .8;
	position: relative;
}
.progress-bar::before{
	content: "0%";
	position: absolute;
	left: 0;
	font-size: 12px;
	bottom: -18px
}
.progress-bar::after{
	content: "100%";
	position: absolute;
	right: 0;
	font-size: 12px;
	bottom: -18px
}
.progress-bar span{
	display: block;
	width: 80%;
	height:12px;
	background-color: #87B1DE;
	animation: fill 1s ease-in 1;
}
@keyframes fill{
	from{width: 0;}
	to{width: 80%}
}
}