img {
  width: 30%;
}
div.main {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@keyframes pulsate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.pulsating-button {
  animation: pulsate 2s infinite; /* Adjust the duration as needed */
  background-color: rgb(190, 14, 14);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 40px;
  text-decoration: none;
  text-align: center;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-top: 40px;
}
.pulsating-button:hover {
  animation: pulsate 2s infinite; /* Adjust the duration as needed */
  background-color: rgb(190, 14, 14);
  color: white;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
}
@media (max-width: 1000px) {
}
