@charset "UTF-8";
/* CSS Document */

/* Global */
h1, h3  {
    font-family: 'Cutive Mono', monospace;
    font-weight: 500;
    color: rgba(90, 132, 218, .3);
    line-height: 1.5;
	text-decoration: none;
}

#welcome {
    position: absolute;
    bottom: 30%;
    right: 10%;
    z-index: 3;
	transition: opacity 2.0s ease-in-out;
    opacity: 0;
}

#enter {
    position: absolute;
    bottom: 25%;
    right: 10%;
    z-index: 3;
	transition: opacity 5.0s ease-in-out;
    opacity: 0;
    pointer-events: none;
}

.VideoBackground {
    position: fixed;
    right: 0;
    bottom: 0;
    object-fit: cover;
	min-height: 100%;
	min-width: 100%;
    z-index: -1;
}

.foreground {
	position: fixed;
	object-fit: fill;
	flloat: none;
    top: 0px;
	left: 0px;
	max-height: 100%;
	height: 100vh;
	width: 100%;
    z-index: 0;
	overflow-x: hidden;

}

.background { 
	position: absolute; /* Change to relative if including class continue */
    left: 0;
    top: 0px; 
	width: 100%;
	margin: 0;
    z-index: -2;
	perspective: 2px;
}

/* Details for next page if needed
.continue {
	position: relative;
    bottom: 400px;
    z-index: -1;	
	text-align: center;
}

body {
	background-color: #000000;
}

p{
    font-family: 'Cutive Mono', monospace;
	font-size: 14px;
    color: #FF0000;
	text-decoration: none;
	color: rgba(255, 255, 255, .5);
	
}
*/



/* Tablet View */
@media (min-width:481px) and (max-width:850px){
	h3 {
		font-size: 4vw;
	}
	
	.background {
		top: 10vh;
		padding-bottom: 40vh;
		max-width: 100vw;
	}
	
		.foreground {
			height: 100vh;
			min-height: 100%;
			left: 0;
	}
}

/* Mobile view */
@media (max-width:480px), (orientation:portrait){
	h3 {
		font-size: 8vw;
	}
	
	.background {
		top: 40vh;
		padding-bottom: 40vh;
		max-width: 100vw;
	}
	
		.foreground {
			height: 100vh;
			width: 100%;
			margin: 0;
			padding: 0;
			left: 0;
			min-height: 100%;
	}
}

