/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Sep 02 2025 | 20:01:24 */
#my-button {
  width: 228px;
  height: 54px; /* Явно задаём высоту */
  background-color: #2C9347;
  color: #ffffff;
  border: none;
  border-radius: 0;
  font-family: "Tilda Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px; /* такой же, как в .custom-wide-button */
  letter-spacing: -0.3px;
  text-align: center;
  padding-left: 21px;
  padding-right: 21px;
  box-sizing: border-box;
  cursor: pointer;
  display: inline-flex; /* чтобы можно было выровнять текст по центру */
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Анимация при наведении */
#my-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
