:root {
    --whBlue: #004E90;
}

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;
}


@media (min-width: 700px)
{
    .limitedWidth {
        width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 699px) {
    .limitedWidth {
        width: 100%;
    }
}

.whBlue {
    background-color: #004E90;
    color: white;
}

.btn-primary {
    background-color: #004E90 !important;
    color: white !important;
    border-color: #004E90 !important;
}

.whBlueFont {
    color: var(--whBlue);
}

.whAlert {
    color: var(--whBlue);
    background-color: var(--bs-gray-100);
    border-color: var(--bs-gray-200);
    border-left-width: .25em;
}