@charset "utf-8";


/* ------------------------------------------- */
/* ----------- Michael Seifried -------------- */

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	width: 100%;
	height: 100%;
}

#header {
	position: relative;
    background-color: #000000;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
	min-height: 100vh;
}

#backgroundvid {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
}

#logo {
	width: 90%;
	margin: auto;
	-webkit-filter: blur(0px);
    -webkit-animation: fadein linear 3s;
}

#logo img {
	margin: auto;
    display: block;
    width: 50vw;
    height: auto;
}

@-webkit-keyframes fadein {
   0% { -webkit-filter: blur(15px);}
  28% { -webkit-filter: blur(10px);}
 100% { -webkit-filter: blur(0px);}
}

#logo p {
	font-family: 'Orbitron', sans-serif;
	color: white;
	text-align: center;
}





/* ---------------------------------------------------------------------------------------------------------*/
/* ------------------------------------------ media query --------------------------------------------------*/


/* ----------------------------------- */
/* --- Tablet, Smartphone Portrait --- */

@media (min-width: 481px) and (max-width: 767px) {
	
#logo img {
    width: 70vw;
	}
}


/* --- Smartphones --- */

@media (max-width: 480px) {
	
#logo img {
    width: 85vw;
	}
}
