/* Base button style */
.my-button {
  background-color: #9f1337;
  color: white;
  padding: 15px 30px;
  font-size: 20px;
  border-radius: 40px;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-family: 'Amiko', sans serif;
  font-weight: bold
  
}

.my-button2 {
  background-color: #9f1337;
  color: white;
  padding: 10px 20px;
  font-size: 15px;
  border-radius: 40px;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-family: 'Amiko', sans serif;
  font-weight: bold
  
}

/* Hover effect */
.my-button:hover {
  background-color: #FBE1E8;
  color: #9F1337;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.my-button2:hover {
  background-color: #FBE1E8;
  color: #9F1337;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}