@tailwind base;
@tailwind components;
@tailwind utilities;

/*

@layer components {
  .btn-primary {
    @apply py-2 px-4 bg-blue-200;
  }
}

*/

textarea {
  @apply w-full;
}

input[type="submit"] {
  @apply py-2 px-4 bg-mailpals-green text-white opacity-90 hover:opacity-100 cursor-pointer;
}

h1 {
  @apply text-2xl font-bold;
}

h2 {
  @apply text-xl font-semibold;
}

h3 {
  @apply text-lg font-medium;
}

h4 {
  @apply text-base font-normal;
}

h5 {
  @apply text-sm font-normal;
}



.flashing-box {
  color: white;
  text-align: center;
  position: relative;
  font-weight: bold;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: scale-pulse 1s infinite;
}

@keyframes scale-pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }

  0% {
    color: #fffff5;
    text-shadow: 2px 2px 4px #e02d38;
  }

  50% {
    color: #e02d38;
    text-shadow: 2px 2px 4px #fffff5;
  }

  100% {
    color: #fffff5;
    text-shadow: 2px 2px 4px #e02d38;
  }
}

body.modal-open {
  overflow: hidden;
}