  @keyframes modalFadeIn {
      from {
          opacity: 0;
          transform: translateY(20px) scale(0.98);
      }

      to {
          opacity: 1;
          transform: translateY(0) scale(1);
      }
  }

  .modal-animate {
      animation: modalFadeIn 0.25s ease;
  }

  a,
  button {
      cursor: pointer;
  }

  @media (max-width: 768px) {
    .main-title{
        flex-direction: column-reverse;
    }
  }