@charset "UTF-8";

:root {
  --grey: #2e2e2e;
  --lightBlue: #42b1d8;
}

html, body{
	min-height: 100vh;
	margin: 0;
}

#landing-video-container{
	z-index: 3;
	transition: opacity 1.5s, z-index 2.5s;
	opacity: 1;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #fff;
	display: flex;
	align-items: center;
	justify-items: center;
}

#landing-video{
	width: 100%;
	max-width: 1920px;
}

#landing{
	z-index: 2;
	min-height: 100vh;
	background: var(--grey) url('../assets/landing-bg.png') no-repeat;
	background-size: 40%;
    background-position: left top;
	color: #fff;
	display: flex;
	align-items: center;
	justify-items: center;
	position: relative;
}

#landing-content{
	max-width: 60%;
	min-width: 320px;
    margin: 0 auto;
    text-align: center;
	font-family: 'Raleway', sans-serif;
	font-size: 22px;
}

.logo{
	max-width: 100%;
	margin-bottom: 60px;
}

.landing-title{
	font-size: 70px;
	margin-bottom: 30px;
}

.landing-description{
	margin-bottom: 60px;
}

.btn{
	color: #fff;
	font-size: 30px;
	text-decoration: none;
}

.btn:before{
	content: "";
	width: 65px;
	height: 65px;
	background-color: var(--lightBlue);
	border-radius: 50%;
	display: inline-block;
    vertical-align: middle;
    margin-right: -30px;
}
