html {
  font-size: 14px;
}

@media (min-width: 900px) {
  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;
}


.bg-darkblue {
    background-color: #322e47 !important; /* Dark Blue Color */
}

.text-white {
    color: white !important;
}

.nav-link:hover {
    color: lightgray !important;
}

.footer {
    padding: 10px;
}

/* Make the header taller */
.custom-header {
    height: 180px; /* Adjust the height */
}

/* Make the footer taller */
.custom-footer {
    height: 90px; /* Adjust footer height */
    background-color: #003366; /* Dark blue */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Make the body fill the screen */
.custom-body {
    min-height: calc(100vh - 140px); /* Adjust to fit header/footer */
}

/* Change navbar background and font color */
.navbar {
    background-color: #003366 !important; /* Dark blue */
    height:95px
}

    .navbar .nav-link {
        color: white !important;
        font-size:22px
    }
    .navbar .navbar-brand {
        font-size: 37px
    }

/* Change logout button color */
.btn-danger {
    background-color: red !important;
    border-color: red;
}
.pb-3 {
    padding-bottom: 18rem !important;
}





