* {
	box-sizing: border-box;
	padding: 0px;
	margin: 0px;
}

body {
	width: 100vw;
	height: 100vh;
	background-color: #000000;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}

.corner {
	width: 500px;
	height: 500px;
	background-image: url(assets/images/corner.svg);
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	right: 35px;
	bottom: 35px;
	z-index: 2;
	opacity: 0.15;
}

.corner--top {
	left: 35px;
	top: 35px;
	transform: rotate(180deg);
}

.corner--top-left {
	right: 35px;
	top: 35px;
	transform: rotate(270deg);
}

.video-text {
	width: auto;
	height: auto;
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.video-text__video {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
	/* transform: scale(0); */
}

.video-text__title {
	width: auto;
	height: auto;
	font-size: 9em;
	font-family: "Roboto", sans-serif;
	text-transform: uppercase;
	color: #ffffff;
	background-color: #000000;
	mix-blend-mode: multiply;
}

.text {
	font-size: 16px;
	text-transform: uppercase;
	color: #181a22;
	font-family: "Roboto", sans-serif;
	align-self: flex-start;
	margin-left: 9px;
}

.credits {
	font-size: 0.8em;
	text-transform: uppercase;
	position: absolute;
	right: 55px;
	bottom: 55px;
	z-index: 3;
}

.credits a {
	font-family: "Roboto", sans-serif;
	text-decoration: none;
	color: #181a22;
	margin-left: 15px;
}

.credits a:hover {
	text-decoration: underline;
	color: #242732;
}

@media only screen and (max-width: 1350px) {
	.video-text__title {
		font-size: 6em;
	}
	.text {
		margin-left: 4px;
	}
}

@media only screen and (max-width: 900px) {
	.video-text__title {
		font-size: 4em;
	}
	.text {
		font-size: 0.8em;
		margin-left: 2px;
	}
	.corner {
		width: 300px;
		height: 300px;
	}
}

@media only screen and (max-width: 600px) {
	.video-text__title {
		font-size: 2em;
	}
	.text {
		font-size: 0.5em;
		margin-left: 0px;
	}
}
