body {
  background: radial-gradient(green, yellow);
}

h1 {
  color:green;
  font-family: "Helvetica", sans-serif;
  font-size: 50px;
  text-align: center;
}

.title {
  color:white;
  font-family: "Helvetica", sans-serif;
  font-size: 25px;
  text-align: center;
}

/* I've centered all text, changed the font to helvetica and change the colors for text */



.links:hover {
  color: yellow; /* Changes color when hovered */
}

.links {
 	text-align: center;
  font-family: "Helvetica", sans-serif;
  color: black;
  font-size: 12px;
} 

.para {
font-family: "Helvetica", sans-serif;
  text-align: center;
  font-size: 16px;
  color: white;
  margin-left: auto;
  margin-right: auto;
  width: 52%;
}

/* Centered images and made them smaller */

img {
		width: 40%;
  	height: auto;
  	position: center;
  	
}

.frog1 {
    display: block;
  	margin-left: auto;
  	margin-right: auto;
  	width: 50%;
  	transition-timing-function: ease-in-out;
		transition-property: all;
 		transition-duration: 0.5s;
  	animation-timing-function: linear;
}

  /* added hover animations to my image */


.frog1:hover {
    display: block;
  	margin-left: auto;
  	margin-right: auto;
  	width: 55%;
 		transform: rotate(1deg);
  	animation: wiggle 0.5s infinite;
}

@keyframes wiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(1deg); }
  50% { transform: rotate(-1deg); }
  100% { transform: rotate(0deg); }
}

  /* Created containers so I can center certain items in my site */

body {
  /* Applied 20px padding to all four sides */
  padding: 20px;
}