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%;
    overflow-x: hidden;
}

body {
    margin-top: 40px;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (min-width: 1445px) { /* Or 1602px if has History Ideas; */
    /* Hides the hamburger menu button on wide screens */
    .navbar .navbar-toggler {
        display: none;
    }

    /* Shows the collapsible content and lays it out as a flex container */
    .navbar .navbar-collapse {
        display: flex !important; /* Use !important to override Bootstrap's default inline styles */
        flex-basis: auto;
    }

    /* Ensures navigation items are in a row instead of stacked */
    .navbar .navbar-nav {
        flex-direction: row;
    }
}