.css-privet {color: #333};



    .button:hover {
  transform: translateY(-2px);
  border-radius: 24px;
  box-shadow: 0 0 0 1px rgba(80, 145, 255, 0.35),
              0 10px 28px rgba(80, 145, 255, 0.28);
}

.button {
     border-radius: 24px;
  transition: background 180ms ease,
              transform 180ms ease,
              box-shadow 180ms ease;
}

.button-s:hover {
  transform: translateY(-1px);
  border-radius: 12px;
  box-shadow: 0 0 0 1px rgba(80, 145, 255, 0.35),
              0 5px 14px rgba(80, 145, 255, 0.28);
}

.button-s {
     border-radius: 12px;
  transition: background 180ms ease,
              transform 180ms ease,
              box-shadow 180ms ease;
}




