/*#region Defaults */
html {
    font-size: 14px;
    background-color: #EAEAEA;
}

@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;
    background-color: #EAEAEA;
}
/*#endregion*/

/*#region Header CSS */
.navbar {
    background-color: #1E376C;
}

.navbar-brand {
    color: white;
}

.navbar-text {
    color: white;
}


a.nav-link {
    color: white;
    opacity: 80%;
}

    a.nav-link:hover,
    a.nav-link:active {
        color: white;
        opacity: 100%;
    }

.nav-link.currentNav {
    color: white;
    opacity: 100%;
}
/*#endregion*/

/*#region Footer CSS */
.footer {
    background-color: #1E376C;
    color: white;
}
/*#endregion*/

h6 {
    color: #1E376C;
}