.navbar 
{
	margin-bottom: 0;
	border-radius: 0;
}

.navbar-nav.navbar-center 
{
    position: absolute;
    left: 50%;
    transform: translatex(-50%);
}

.section
{
	position:relative;
	width: 100%;
	height: 91.25vh;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.video-container
{
	position: absolute;
}

.text
{
	z-index: 3;
}

.text h2, p
{
	background: rgba(41, 11, 76, 0.3);
	color: white;
	padding: 10px;
	margin: 5px;
	text-shadow: 0 0 3px yellow;
}	

body 
{			
	background: black;
	text-align: center; color: cornsilk;
}
	
#title
{
	font-family: 'Audiowide';
	color: rgba(199,253,45);
	text-shadow: 0 0 20px Magenta;
}

#mitem
{
	color:Magenta;
	font-family: 'Fugaz One';
	font-size: 18px;
}

#blink
{
  animation: blinker 2.5s linear infinite;
  color: rgba(199,253,45);
}

@keyframes blinker 
{  
  50% { opacity: 0.0; }
}