body {
  margin: 0;
  height: 100vh;
  background-image: url('ad.JPG'); /* Replace "image.jpg" with the actual path to your image */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.entry-page {
  /* Add additional styling here if desired */
}

.animated-button {
  background-color: #A30000; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 0px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 5px;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
