*
{
    margin: 0;
    padding: 0;
}
video{
		min-width:100%;
		min-height:100%;
		position: absolute;
		bottom: 0;
		right: 0;

	}
.overlay{
		min-width: 100%;
		min-height: 100%;
		position: absolute;
		top: 0;
		left:0;
		background-color: rgba(245, 0, 87,.2);
	}
.text{
		min-width: 100%;
		min-height: 100%;
		position: absolute;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		text-align: center;
		}
.text h1{
		font-size: 6rem;
		text-shadow:5px 3px grey;
		
		font-weight: bold;
	}
	
.text p{
		font-size: 3em;
		text-shadow:3px 3px grey;
		padding-left: 5px;
		padding-right: 8px;
		font-family: Lobster,cursive;
		background-color: #9dc5c3;
		background-image: linear-gradient(#e96443,#904e95);
	}
a{
		padding: 10px;
		margin-top: 15px;
		background-image:linear-gradient(#9dc5c3 10%,#5e5c5c 74%);
		border-radius: 15px;
		border:3px solid black;
		width:200px;
		text-shadow:1px 1px blue;
		text-decoration: none;
		color:black;
		font-family: Arial;
		font-weight: bold;
		font-size:20px;
	}
	a:hover{

		background-image:linear-gradient(#a4508b 0%,#5f0a87 74%) ;
		color:black;
	}
