body {
	background-color: white;
	color: black;
	font-size: 20px;
	font-family: monaco ;
}
h1 {
	text-align: center; font-size : 50px ;
  background-color: white;
  animation-name: myAnimation2;
  animation-duration: 8s;
}
.style1 {
		text-decoration-line : underline ; 
}
p{text-align : justify ;}

.style2 { 
  background-color: white;
  animation-name: myAnimation;
  animation-duration: 8s;
  text-align : center
}

@keyframes myAnimation2 {
  from {color: black;}
  to {color: blue;}
}

img
 {  
	animation-name: myAnimation;
	animation-duration: 10s;
}

@keyframes myAnimation {
  0%   {opacity: 0.0;}
  100% {opacity: 1.0;}
 }
