@charset "utf-8";
/* CSS Document */
body,html{
	overflow-x: hidden;
	margin: auto;
	padding: inherit;
    font-family: "Mansalva", sans-serif;
	color:firebrick;
	background-color: ghostwhite;
}
video{
	object-fit:cover;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -10;
	opacity: 35%;
	animation: flames 8s ease-in ;
}
@keyframes flames
{
	from{
		opacity: 100%;
	}
	to{
		opacity: 35%;
	}
}
h1{
	text-align: center;
	font-size: 60px;
	padding: 2%;
	filter: drop-shadow(1px 2px 2px green);

}
.border{
	border:firebrick;
	border-style:groove;
}
.bot{
	position: relative;
	animation: loMove 10s ease-in-out alternate infinite;
}

@keyframes loMove{
	from{
		transform: rotateY(180deg);
	}
	to {
		transform: rotateY(-180deg);

	}
}
p{
	text-align: left;
	margin: 2%;
	font-size: 30px;
	padding: 1%;
	filter: drop-shadow(1px 2px 2px green);
}
div{
    display: flex;
	align-content: center;
	justify-content: center;
	filter: drop-shadow(2px 1px 2px green);
	width: 90%;
}
a{
	z-index: 100;
	padding: 1%;
}
footer{
	text-align: center;
	font-size: 20px;
	padding: 1%;
	display: block;
	filter: drop-shadow(2px 1px 2px green);
}

