
body{
	display: flex;
	flex-direction: column;
	background-image:url(saving-gg-images/leo.png), url(saving-gg-images/fire.gif);
	background-color:red;
	background-repeat:no-repeat;
	 background-size: cover;
	justify-content: center;
	align-items: center;
	color:white;
}

h2{
		animation: blinker 0.1s linear infinite;

	color:red;
	text-align: center;
}

h1{
	font-size: 70px;
	color:red;
	animation: blinker 0.1s linear infinite;

}

@keyframes blinker {
  50% {
    color:yellow;
  }
}




.container{
	background-color:rgb(0,0,0,0.6);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color:white;
	border: 5px solid black;
	padding: 5px;
	height:1500px;
}