body {

	background-color: pink;

}

h1 {
font-family: 'Slackey', cursive;
text-align: center;
}

#first { font-family: 'Slackey', cursive;
	font-size: 65px;
	text-align: center;

}

#second { font-family: 'Slackey', cursive; font-size: 65px;
text-align: center;

}

#first2 { font-family: 'Slackey', cursive;
	font-size: 65px;
	text-align: center;

}

#second2 { font-family: 'Slackey', cursive; font-size: 65px;
text-align: center;

}

#monster img {
    text-align: center;
    -webkit-animation: alive 4s linear infinite;
    -moz-animation: alive 4s linear infinite;
    animation: alive 4s linear infinite;

}

.container
{ text-align: center;}

@keyframes alive {

-moz-keyframes alive { 50% { -moz-transform: rotate(18deg); 100% { -moz-transform: rotate(0deg); } }
@-webkit-keyframes alive { 50% { -webkit-transform: rotate(18deg); } 100% { -webkit-transform: rotate(0deg); }}
@keyframes alive { 50% { -webkit-transform: rotate(18deg); transform:rotate(18deg); } 100% { -webkit-transform: rotate(18deg); transform:rotate(0deg); }}
}