@charset "utf-8";
/* CSS Document */

html, body {
	margin: 0;
	padding: 0;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	text-align: center;
	color: #fff;
	background: #000;
	overflow-x: hidden;
	scrollbar-width: thin;
	scrollbar-color: #111 #000;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

img {
	border: 0;
}

a:link, a:hover, a:active, a:visited {
	text-decoration: none;
	color: #fff;
}

.container {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 100svh;
	margin: 0;
	padding: 40px;
	box-sizing: border-box;
	z-index: 100;
	overflow: hidden;
}

.logo {
	position: relative;
	width: 100%;
	max-width: 600px;
	height: auto;
	margin: 0;
	padding: 0;
	filter: drop-shadow(5px 5px 10px rgba(0,0,0,0.5));
}

.btn {
	font-size: 16px;
	font-weight: 900;
	text-transform: uppercase;
	margin: 40px 0;
	padding: 10px 15px;
	background-color: #000;
	background-clip: padding-box;
	border: 4px transparent solid;
	outline: 1px rgba(255,255,255,0.1) solid;
	border-radius: 3px;
	box-shadow: 5px 5px 10px 0px rgba(0,0,0,0.5);
	opacity: 0;
	transform: translateY(20px);
	transition: outline 0.5s;
	animation: btn-intro 1s 2s ease-out forwards;
}

.btn .text-1 {
	color: #B0BEC5;
}

.btn .text-2 {
	font-weight: 400;
	color: #ef4137;
}

.btn:hover {
	outline: 1px rgba(255,255,255,0.75) solid;
}

@keyframes btn-intro {
    100% {
        opacity: 1;	
		transform: translateY(0px);
    }
}

video {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	max-width: 1920px;
	height: 100svh;
	margin: 0 auto;
	padding: 0;
	opacity: 0;
  	object-fit: cover;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(black, transparent);
	mask-image: linear-gradient(black, transparent);
	opacity: 0;
	animation: video-intro 8s 1s linear forwards;
	overflow: hidden;
}
 
@media (orientation: portrait) {
	video {
		height: 80svh;
	}	
}

@keyframes video-intro {
	100% {
		opacity: 0.5;
	}
}