* {
  font-family: 'Roboto Light', sans-serif;
}

.nav-item {
  letter-spacing: 0.3em;
}

h1 {
  margin-top: 10px;
  font-size: 32px;
}

h5 {
  letter-spacing: 0.3em;
}

a:hover {
  --bs-link-color-rgb: #00ff53;
  color: unset !important;
}

#mainNav .navbar-nav > li.nav-item > a.nav-link.active {
  color: var(--bs-primary);
}

#mainNav.navbar-dark .navbar-nav > li.nav-item > a.nav-link:hover {
  color: rgba(160, 160, 160, .85) !important;
}

a {
  color: #f5f6f8;
}

.tooltip-container {
  position: relative;
  display: inline-block;
}

.tooltip-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease;
  text-align: center;
  padding: 1rem;
  pointer-events: none;
}

.tooltip-container:hover .tooltip-overlay {
  opacity: 1;
  pointer-events: auto;
}

.spacer {
  height: 100vh;
}

