body {
		font-family: Arial;
		background-color: black;
		overflow: hidden;
	}
	
	.sky {
		background: url("https://media0.giphy.com/media/v1.Y2lkPTZjMDliOTUyN3p3NW8wb3pkcGppNzQ3emtqemk3ZGswejhhbGZjejQ1MndpeWJzZSZlcD12MV9naWZzX3NlYXJjaCZjdD1n/FlodpfQUBSp20/source.gif");
	  background-position: center;
    background-repeat: repeat;
	}
	
	div {
	  background-color: transparent;
	}
	
	h1 {
		background-color: white;
		display: flex;
		align-items: center;
		justify-content: center;
		font-family: Verdana, sans-serif;
	}
	
	h2 {
		background-color: white;
		display: flex;
		align-items: center;
		justify-content: center;
		color: black;
	}
	
	h2 span {
		color: red;
	}
	
	button {
		font-family: Verdana, sans-serif;
		transition: width 200ms, height 200ms;
	}
	
	button:hover {
		transform: scale(1.2);
		color: blue;
		cursor: pointer;
	}
	
	button:hover::before {
	  content: "*";
	}
	
	button:hover::after {
	  content: "*";
	}
	
	button:active {
		transform: scale(0.95);
		background-color: darkslategray;
		color: red;
	}
	
	.center {
		display: flex;
		align-items: center;
		justify-content: center;
		position: 50vh;
	}
	
	#tcontain {
		display: flex;
		align-items: center;
		justify-content: center;
		position: 25vh;
		animation-name: flyintop;
		animation-duration: 1s;
		animation-timing-function: ease-out;
	}
	
	#econtain {
		display: flex;
		align-items: center;
		justify-content: center;
		visibility: hidden;
		height: 75vh;
		animation-name: wiggle;
		animation-duration: 0.5s;
		animation-delay: 1s;
		animation-fill-mode: forwards;
	}
	
	@keyframes flyintop {
		0% {transform: translate(0px,-200px);}
		50% {transform: translate(0px, 30px);}
		100% {transform: translate(0px,0px);}
	}
	
	@keyframes wiggle {
		0% {transform: scale(15);}
		10% {transform: scale(0); transform: rotate(0deg); visibility: visible;}
		20% {transform: rotate(15deg);}
		60% {transform: rotate(-15deg);}
		100% {transform: rotate(0deg); visibility: visible;}
	}
	
	.striped {
		background-color: linear-gradient(
		to bottom,
		darkslategray,
		black,
		);
	}