@tailwind base;
@tailwind components;
@tailwind utilities;

@layer components {
    .ql-editor h1 {
        @apply text-4xl;
        @apply font-bold;
    }

    .ql-editor h2 {
        @apply text-3xl;
        @apply font-bold;
    }

    .ql-editor h3 {
        @apply text-2xl;
        @apply font-bold;
    }

    .ql-editor h4 {
        @apply text-xl;
        @apply font-semibold;
    }

    .ql-editor h5 {
        @apply text-lg;
        @apply font-semibold;
    }

    .ql-editor h6 {
        @apply text-sm;
        @apply font-semibold;
    }

    .ql-editor a {
        @apply text-blue-600 underline;
    }
}

.rounded {
    border-radius: 0.5em !important;
}

body {
    margin: 0 !important;
    padding: 0 !important;
}
html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.page-title {
    color: white;
}

.avatar {
    filter: grayscale(90%);
}

.avatar:hover {
    filter: none;
}