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 {
    font-family: 'Exo 2', sans-serif;
}

.navbar-brand,
.nav-link,
.footer,
h1, h2, h3, h4, h5, h6,
.btn,
.card,
.form-control {
    font-family: 'Exo 2', sans-serif !important;
}

body {
  margin-bottom: 60px;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffc107; /* Bootstrap warning color or your custom yellow */
    text-decoration: none;
}

/* Underline animation effect */
.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #ffc107;
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}
