.nav {
  display: flex;
  align-items: baseline;
  background-color: inherit;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-logo {
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
  flex: 1 0;
}

.nav-logo span {
  display: inline-block;
  transition: color 0.3s ease;
}

.nav-logo span {
  color: white;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
}

.nav-link,
.nav-active-link  {
  display: flex;
  height: 1.5rem;
  align-items: center;
  padding: 0 0.75rem;
  font-size: 1.4rem;
  font-family: inherit;
  transition: background-color 0.05s, color 0.05s;
  text-decoration: none;
}

.nav-link:hover {
  background-color: #2d3748;
  transform: scale(1.5);
  color: #9f2b2b;
}

.nav-link a:visited {
  color: inherit;
  text-decoration: none;
}

.nav-link {
  color: rgb(240, 250, 250);
}

.nav-active-link {
  background-color: #2d3748;
  color: #9f2b2b;
}

.fa {
  padding: 1px;
  font-size: 10px;
  width: 20px;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  color: white;
  background-color: #111;
  transition: background-color 0.3s, transform 0.2s;
}

.fa:hover {
  background-color: #9f2b2b;
  transform: scale(1);
}

.floating-nav {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: #111;
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.floating-nav .fa {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  transition: transform 0.2s, color 0.2s;
}

.floating-nav .fa:hover {
  transform: scale(1.2);
}

.divider {
  color: rgba(220, 250, 250, 0.623);
  font-size: 1.5rem;
  user-select: none;
}