@charset "utf-8";
/* CSS Document */
html,body{
  margin: auto;
  padding: inherit;
  font-family: 'Mea Culpa', cursive;
  color: black;
  background-color: whitesmoke;
  overflow-x: hidden;
}
h1{
	text-align: center;
	font-size: 65px;
	font-style: italic;
	filter: drop-shadow(1px 1px 1px lightgreen);
	background-image: url("Cash-coin-falling-down-illustration-on-transparent-background-PNG.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
#back{
	background-image: url("Falling-Money-PNG-Image-HD.png");
	background-position: center;
	background-size: contain;
	z-index: 100;
	animation: moneyM 30s linear infinite alternate;
}
p{
	font-size: 38px;
	font-style: italic;
	font-weight: bolder;
	filter: drop-shadow(1px 1px 1px lightgreen);
	padding: 2%;
	margin: 2%;
}
@keyframes moneyM{
	0%{
		background-position: 0 0;

	}
	100%{
		background-position: 10% 100%;

	}
}
div{
	display: flex;
	align-content: center;
	justify-content: center;
	filter: drop-shadow(1px 1px 1px lightgreen);

}
a{
	padding: 1%;
}
footer{
	text-align: center;
	font-size: 25px;
	filter: drop-shadow(1px 1px 1px lightgreen);
	background-image: url("Cash-coin-falling-down-illustration-on-transparent-background-PNG.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}