
a {
  color: inherit;
}

@media (max-width: 768px) {
  .navbar-nav {
    flex-direction: row;
    gap: 5px;
  }

  .button-row {
    flex-wrap: wrap;
  }

  .button-row button {
    margin: 10px;
    width: 100%;
    max-width: 300px;
  }
}

.navbar {
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
}


.logo {
  max-width: 64px;
}


 * {
    font-family: Lato, 'Noto Sans', Arial, Helvetica, sans-serif;
    scroll-behavior: smooth;
  }

  body {
    transition: all 500ms;
  }

  footer {
    align-items: center;
    justify-content: center;
    justify-self: center;
    justify-items: center;
  }

  .github:hover {
    color: rgb(71, 71, 71);
    transition: all 400ms;
  }

  .linkedin:hover {
    color: rgb(10, 102, 194);
    transition: all 400ms;
  }

  .nav-item:hover {
    opacity: 0.85;
    transition: all 400ms;

  }

  .btn:hover {
    background-color: #84848431 !important;
    scale: 1.02;
    transition: all 400ms;
  }

  .navbar-nav .nav-link {
    position: relative;
    padding-bottom: 6px;
  }

  .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    background-image: radial-gradient(70% 200% at 14% 70%, #86f3ff 0%, #3e9eff 30%, #00eaff 98%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
  }

  .navbar-nav .nav-link.hovered::before {
    opacity: 1;
    width: 0%;
    transition: opacity 0.3s ease-in-out;
  }

  .navbar-nav .nav-link.hovered::after {
    opacity: 1;
    width: 100;
    transition: width 1s ease-in-out;
  }

  .navbar-nav .nav-link.active::after {
    opacity: 1;
    width: 100%;
  }

.bs-icon {
    --bs-icon-size: .75rem;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    font-size: var(--bs-icon-size);
    width: calc(var(--bs-icon-size) * 2);
    height: calc(var(--bs-icon-size) * 2);
    color: var(--bs-primary)
}

.bs-icon-md {
    --bs-icon-size: 1.5rem
}

.bs-icon.bs-icon-primary {
    color: var(--bs-white);
    background: var(--bs-primary)
}

.bs-icon.bs-icon-rounded {
    border-radius: .5rem
}