/* Base font for the whole site */
html {
    font-size: 14px; /* Adjust this to your preferred base size */
    line-height: 1.5; /* Optional: makes text more readable */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

/* Headings (optional fine-tuning) */
h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1rem;
}

h6 {
    font-size: 0.875rem;
}

/* Paragraphs and smaller text */
p, span, li, label, a, button {
    font-size: 0.875rem; /* slightly smaller for body text */
}

/* Adjust bootstrap overrides (if needed) */
.btn, .form-control, .card-text {
    font-size: 0.875rem;
}


@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%;
}


.full-width-section {
    padding-left: 5%;
    padding-right: 5%;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
