.container {
	
	border: 2px solid pink;
	padding: 15px;
	margin-left: 300px;
	margin-right: 300px;
	background-color: black;
	color: white;
	font-family: header;
	height: 1500px;
	text-align: center;
}

@font-face {
	
	/*font-family: typewriter;
	src: url("fonts/ELEGANT TYPEWRITER Regular.ttf");*/
	
	font-family: header;
	src: ("Courier New");
}

p1 {
	
	font-family: header;
	
}

.thankyou {
	text-align: center;
	position: relative;
	z-index: 30;
	color: white;
	background: url("images/checkers.jpg") repeat;
	background-size: 30px;
	font-family: header;
	letter-spacing: 6px;
}

.mdma {
	
	padding: 50px;
	
	
}

.frame {
	
	position: absolute;
	width: 100%;
	z-index: -30;
	animation: hue-rotation 5s linear infinite;
	opacity: .5;
}

.header {
	
	font-family: header;
	font-size: 30px;
	color: pink;
	text-decoration: underline;
	animation: hue-rotation 5s linear infinite;
	
}

body {
	
	background: url("images/starbg.gif") repeat;
	overflow-x: hidden;
}

.logobg {
	position: relative;
	margin-top: -230px;
	z-index: -10;
	
}

.logotext {
	position:relative;
	margin-left: -170px;
	margin-top: -24px;
	z-index: 15;
	animation: hue-rotation 5s linear infinite;
}

.logo {
	margin: 0 auto;
	width: 500px;
	height: 337px;
	border: 5px solid black;
	box-shadow: 0px 20px 20px pink;

}

@keyframes hue-rotation {
	
	from {
		
		filter: hue-rotate(0deg);
		
	}
	
	to {
		
		filter: hue-rotate(360deg);
		
	}
	
	
}