@import "tailwindcss";

html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
  overflow-x: hidden;
  max-width: 100%;
}

body{
  background-color: #2d2d2d;
  overflow-x: hidden;
  max-width: 100%;
}

@keyframes slideUpFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-up-fade-in {
  animation: slideUpFadeIn 0.7s ease-out both;
}

/* check if firefox browser is being used */

@supports (-moz-appearance: none) {
  .airplane-firefox-mb-fix {
    margin-bottom: -390px;
  }

  .airplane-firefox-width-fix {
    width: 1900px;
  }

  .contact-form-top-margin-fix {
    margin-top: 80px;
  }
}

