@charset "utf-8";
/* CSS Document */
html,body{
	margin: auto;
	padding: inherit;
	overflow-x: hidden;
    font-family: 'Courgette', cursive;
	color: deeppink;
}

h1{
	font-size: 60px;
	display: block;
	text-align: center;
	padding: 3%;
	filter: drop-shadow(1px 1px 1px black);
/*	background-image: url(Abrain.png);*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	animation: brainScale 2s ease-in-out alternate infinite;
}
@keyframes brainScale{
	0%{
		background-size: 5%;
		line-height: inherit;
	}
	100%{
		background-size: 15%;
		line-height: inherit;

	}
}
h2{
	font-size: 60px;
	display: block;
	text-align: center;
	padding: 3%;
	filter: drop-shadow(1px 1px 1px black);
	text-shadow: 1px 1px 7px black;
/*	background-image: url("../../Magneto/pngaaa.com-1711205.png");*/
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}
.cenimg{
	margin-left: auto;
	margin-right: auto;
	display: block;
	
}
video{
	object-fit:cover;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -3;
	filter: blur(3px);	
}
p{
	display: block;
	filter: drop-shadow(1px 1px 1px black);
	font-size: 25px;
	padding: 2%;
	background-color: rgba(0,0,0,0.21);
	animation: wordPlay 8s ease-in-out  1 alternate;
}
@keyframes wordPlay{
	0%{
		opacity: 0%;
	}
	100%{
         
		opacity: 100%;
	}
}
div{
	display: flex;
	align-content: center;
	justify-content: center;
	width: 100%;
	align-items: baseline;
}
a{
	padding: 1%;
}
footer{
	display: block;
	font-size: 15px;
	padding: 1%;
	filter: drop-shadow(1px 1px 1px black);
	text-align: center;

}