
body
{
	padding: 0px;
	margin: 0px;
		
  font-family: "Lato", sans-serif;
	font-optical-sizing: auto;
	font-weight: <weight>;
	font-style: normal;
	
	color: #130339;
	font-size: 16px;
	
	background: #d8ff00;
	
	display: flex;
	flex-direction: column;
			
}

.blue
{
	color: #1d75da;
}

#logo
{
	position: relative;
	background-image: url('media/logo.svg');
	background-size: 50vw;
	background-position: 4em 2.5em;
	width: 90vw;
	height: 70vh;
	background-repeat: no-repeat;
	top:0;
	left:0vw;
}

#heroVideo 
{
	position: fixed;
	left: -2px;
	bottom: -2px;
	width: 102vw;
	height: 102vh;
	overflow: hidden;
	object-fit: cover;
}

h3
{
	font-family: "Unbounded", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	line-height: 1.425em;
	font-size: 1.1em;
}

#content
{
	position: absolute;
	width: 27.5em;
	height: auto;
	background: #d8ff00;
	padding: 0 2.5em 1em 2.5em;
	box-sizing: border-box;
	bottom: 2.75em;
	right: 1em;
	border-bottom: 5px solid #1568e6;
	line-height: 1.3em;
}

#content:after {
	content:" ";
	position:absolute;
	height:1.3em;
	width:calc(100% - 1.25em);
	top:-1.25em;
	left:0px;
	background:#d8ff00;
}

#content:before {
	content:" ";
	position:absolute;
	height:1.8em;
	width:1.8em;
	transform:rotate(45deg);
	top:-.884em;
	right:.37em;
	background:#d8ff00;
}

#mainContainer
{
	position: absolute;
	display: inline-block;
	width: 100%;
	height: 100%;
}

#footer
{
	font-family: "Unbounded", sans-serif;
	position: fixed;
	margin-top: auto;
	text-align: center;
	width: 100vw;
	height: auto;
	bottom: 0px;
	padding: 1em;
	box-sizing: border-box;
	background: #d8ff00;
	font-size: .6em;
	font-weight: 300;
}

.fade-in {
	animation: fadeIn 2s; 
	transition-timing-function: ease-out;  
}

@keyframes fadeIn {
  0% { opacity: 0; }
  33% { opacity: 0; }
  100% { opacity: 1; }
}


@media (max-width: 600px) or (max-height: 550px)
{  
	
	#content
	{
		width: calc(100vw - 2em);
		left: 1em;
		font-size: 3.4vw;
	}
	
	#footer
	{
		padding: 1.75vw;
	}
	
	#logo
	{
		height: 30vh;
		background-position: 1em 1em;
	}
	
  
}