@font-face {
  font-family: '3Regular';
  src: url('./fonts/3Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

.MainButton {
  background-color: #333333;
  color: #E1DDD5;
  font-family: '2Regular';
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: transform 0.2s ease;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .MainButton {
    transform: none;
  }
}

@media (min-width: 769px) {
  .MainButton:hover {
    transform: scale(1.05);
  }
}