@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap');

*{
	padding: 0;
	margin:0;
	font-family: Nunito Sans, sans-serif;
	transition: all 0.5s ease;
	box-sizing: border-box;
}

body{
	font-family: Nunito Sans, sans-serif;
	font-size:1.15em;
	background-image: url(bgimg.png);
	background-repeat: no-repeat;
	background-size: cover;
}

p{
	margin-bottom:1em;
}

p:last-child{
	margin-bottom: 0;
}

.bgvideo{
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%; 
	overflow: hidden;
}

.bgvideo video{
    /* Make video to at least 100% wide and tall */
    min-width: 100%; 
    min-height: 100%; 

    /* Setting width & height to auto prevents the browser from stretching or squishing the video */
    width: auto;
    height: auto;

    /* Center the video */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    filter: grayscale(0.20);

}

.bgvideo .overlay{
	background: rgba(21, 42, 71, 0.9);
	opacity: .8;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	box-sizing: border-box;
	padding: 15% 32px;
	line-height: 1.5;
	text-align: center;
}

.landing{	
	text-align: center;
	position: relative;
	overflow: hidden;
	min-height: 100vh;
}

.landing-wrapper{
	width:100%;
	max-width:800px;
	overflow: hidden;
	text-align: center;
	padding:1em;
	color: #fff;
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	margin:0 auto;
	z-index:1;
}

@media only screen and (max-height: 500px) {
	.landing-wrapper{
		position: relative;
		transform: none;
		top:auto;
		left:auto;
	}
}

.landing-wrapper .logo{
	max-width:100%;
}

.landing-wrapper .introduction{
	margin: 2em 0;
	text-align: left;
	color: #fff;
}

.landing-wrapper .social{
	padding:1em 0;
}

.landing-wrapper .social a{
	color:#fff;
	text-decoration: none;
	display: inline-block;
	width:48px;
	height:48px;
	line-height:44px;
	border-radius: 100px;
	border:2px solid transparent;
}

.landing-wrapper .social a:hover{
	border-color:#fff;
}

.landing-wrapper .copyright{
	padding-top:2em;
	font-size:0.8em;
	color: rgba(255, 255, 255, 0.5);
}

.join-btn {
	text-align: center;
}
.join-btn span {
	display: inline-block;
	position: relative;  
}
.join-btn span:before,
.join-btn span:after {
	content: "";
	position: absolute;
	height: 50%;
	border-bottom: 2px solid rgba(255,255,255,.3);
	top: 0;
	width: 100%;
}
.join-btn span:before {
	right: 100%;
	margin-right: 15px;
}
.join-btn span:after {
	left: 100%;
	margin-left:15px;
}

.join-btn .btn{
	padding:.5em 2em;
	background: none;
	color:#fff;
	font-size:1.2em;
	display: block;
	font-weight:bold;
	border:2px solid #0178ff;
	border-radius: 0.3em;
	text-decoration: none;
}

.join-btn .btn:hover{
	transform: scale(1.1);
	background: #0178ff;
	border-color:#0178ff;
	cursor: pointer;
}
