
body {
  margin: 0;
  font-family: 'Abel', sans-serif;
  background: linear-gradient(to right, #0C71C3, #1C92D2);
  color: white;
}
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}
h1 {
  font-family: 'Abel', sans-serif;
  font-style: normal;
  font-weight: 700;
}
h2, h3 {
  font-family: 'Abel', sans-serif;
  font-weight: 700;
}
.button {
  display: inline-block;
  padding: 0.8em 1.5em;
  margin: 1em 0;
  color: #0C71C3;
  background-color: #fff;
  border: 2px solid #0C71C3;
  border-radius: 5px;
  font-family: 'Acme', sans-serif;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 2px 2px 10px rgba(237, 240, 0, 0.7);
  animation: bounce 1s infinite alternate;
}
@keyframes bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}
