@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

#book_now_btn {
  animation: pulse 1s infinite ease-in-out;
}

p {
  color: #3C4857;
  margin-top: 0;
  margin-bottom: 1rem;
}

span {
  color: #e32005;
}

#warranty {
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #e32005;
  font-weight: 600;
  display: grid;
  align-content: center;
  align-items: center;
}
