.button {
  z-index: 1;
  font-size: inherit;
  font-family: inherit;
  color: white;
  padding: 0.5em 1em;
  outline: none;
  border: none;
  background-color: hsl(236, 32%, 26%);
}

.button:hover {
  cursor: pointer;
  animation: jelly 0.5s;
}

@keyframes jelly {
  0%,
  100% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.9, 1.1);
  }
  50% {
    transform: scale(1.1, 0.9);
  }
  75% {
    transform: scale(0.95, 1.05);
  }
}
/*** تماس با ما ***/
.callme .messageBoxElementBox {
  margin-bottom: 10px;
}

.callme .messageBoxElementInput {
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
  border: 1px solid #ccc;
  outline: none;
  transition: border-color 0.3s;
}

.callme .messageBoxElementInput:focus {
  border-color: #66afe9;
}

.callme .messageBoxElementButton {
  border-radius: 5px;
  display: block;
  margin-top: 10px;
  padding: 6px 15px;
  cursor: pointer;
  width: auto;
  min-width: 100px;
  font-size: 14px;
  box-sizing: border-box;
  border: none;
  background-color: #242b2f;
  color: white;
  transition: background-color 0.3s;

  /* دکمه بیاد سمت چپ */
  margin-left: 0;
  margin-right: auto;

  /* نوشته داخل دکمه وسط بمونه */
  text-align: center;
}

.callme .messageBoxElementButton:hover {
  background-color: #3a4448;
}