*{
	margin:0px;
	padding:0px;
	box-sizing: border-box;
	font-family: 'Oswald';
}

a{text-decoration:none;color:white;}
a:active{text-decoration:none;color:white;}
a:visited{text-decoration:none;color:white;}
a:hover{text-decoration:none;color:white;}
a:link{text-decoration:none;color:white;}

.red{
	color:#FF503B;
}

#header{
	background-color:rgba(255,80,59,1);
	width:100%;
	min-width:300px;
	height:60px;
	position:fixed;
	top:0;
	left:0;
	right:0;
	margin:auto;
	padding:20px;
	z-index:1;
	transition:all 0.4s ease-in-out;
	display:flex;
	align-items:center;
	justify-content:space-between;

	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
	-webkit-justify-content:space-between;
	-webkit-align-items:center;
}

#logo{
	height:35px;
}

#menubox{
	background-color:;
	height:50px;
	width:150px;
	text-align:right;
}

#menuicon{
	width:50px;
	height:50px;
	cursor:pointer;
	display:;
}

#menulist{
	background-color:;
	width:inherit;
	list-style:none;
	font-size:20px;
	font-family: 'Oswald';
	height:0px;
	overflow:hidden;
	padding:0px;
	color:white;
	text-transform:uppercase;
	cursor:pointer;
	padding-right:4px;
	transition:all 0.4s ease-in-out;
}

#menulist li:hover{
	color:#FFE000;
}

#menulist li{
	border-bottom:1px solid white;
}

#wrap{
	width:100%;
	height:100%;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
	display:flex;
	align-items:center;
	justify-content:flex-start;

	display: -webkit-box;   /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */

}

#video{
	position:fixed;
	z-index:-1;
	top:0;
	bottom:0;
	margin:auto;
	left:0;
	right:0;
	width:100%;
	object-fit:cover;
	min-width:100%;
	min-height:100%;
}

#main{
	background-color:rgba(255,255,255,0.0);
	width:90%;
	margin:auto;
	color:#FFE000;
	font-size:70px;
	padding:20px;
	font-family: 'Oswald';
	/*text-shadow: 4px -3px 0px rgba(0,0,0,0.2);*/
	user-select:none;
}

#footer{
	transition:all 0.3s ease-in-out;
	transform:translateY(40px);


	background-color:#FF008D;
	position:relative;
	color:white;
	height:40px;
	width:100%;
	position:fixed;
	bottom:40px;
	left:0;
	display:flex;
	align-items:center;
	justify-content:center;
	font-family:Oswald;
	font-size:12px;
}

#footer a{
	height:100%;
	display:flex;
	align-items:center;
	justify-content:center;
	transition:all 0.3s ease-in-out;

	display:-webkit-flex;
	-webkit-align-items:center;
}

#footer a:hover{
	transform:rotate(360deg);
	-webkit-transform:rotate(360deg);
}

#footer img{
	height:70%;
	margin-left:8px;
	margin-right:8px;
}



/*RULES FOR SMALL SCREENS*/

@media screen and (max-width: 550px){

	#main{
		font-size:40px;
	}

	#logo{
		height:20px;
	}

	#menubox{
		width:100px;
	}
}
























