/* end */
.fixed-button {
  position: fixed;
  bottom: 0px;
  right: 0px;
  background-color: #78335d;
  color: #ffffff;
  padding: 30px 5px;
  border: none;
  border-radius: 80px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  z-index: 9;
  margin-bottom: 350px;
  font-size: 1.4rem;
  text-align: center;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  text-decoration: none;
  animation: blink 1s infinite alternate; /* Blink animation */
}

.fixed-button:hover {
  background-color: #a12c5e; /* Change background color on hover */
}

/* end */
