.video-container {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
	
	z-index: 0;
	
	 -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}
.video-container video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
body{
	margin: 0px;
	overflow: hidden; /* Hide scrollbars */	
	
	color: aliceblue;
	font-family: 'Montserrat', sans-serif;
}
.logo{
	position: absolute;
	z-index: 1;
    min-width: 100%;
    width: auto;
	
	text-align: center;
	bottom: 5%;
}
.logo img {
	width: 200px;
		
}
.mailC{
	position: absolute;
	
	top: 0;
	right: 0;	
	margin-right: 10px;
	
	padding-top: 25px;
	
	padding-right: 25px;
	
}
.txt {
	width:400px;
margin: auto;
	
	padding-top: 25px;
	color: #DBDBDB;
	font-size: 0.9em;
	
	line-height: 1.4em;
	
}
a {
	text-decoration: none;
}
a:link {
  color: aqua;
}

/* visited link */
a:visited {
  color:darkturquoise;
}

/* mouse over link */
a:hover {
  color: darkturquoise;
}

/* selected link */
a:active {
  color: darkturquoise;

}
@media (max-width: 600px) {
	.txt {
	width:80%;
  }
}




