img { 
  border-radius: 75px;
   animation: bounce 2s infinite;
   margin-top: 20px;
}

h2 {
  font-size: 18px;
}

body {
  background: linear-gradient(to right, slateblue, lightblue);
  font-family: "Trebuchet MS";
  color: white;
  text-align: center;
}

a {
  text-decoration: none;
}

.button-like:hover {
  color: blue;
  transform: scale(1.05);
}

.button-like:active {
  background-color: darkblue;
  transform: translate(2px);
  color: white;
}

.button-like {
  background-color: white;
  font-size: 20px;
  border-radius: 10px;
  padding: 10px;
  transition: transform 0.5s ease;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: inline-block;
  text-align: center;
  margin: 10px;
  color: slateblue;
  border: 1px solid black;
  border-bottom: 3px solid grey;
  border-left: 3px solid grey;
}


@keyframes bounce {
   0%, 20%, 50%, 100% { 
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
