nav {
  background-color: var(--background-color);
  text-align: center;
  position: fixed;
  width: 100%;
  z-index: 999;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  white-space: nowrap;
}

.navbar {
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.links {
  display: flex;
  gap: 5px;
}

.links a {
  padding: 12px 20px;
}

.links a:hover {
  color: var(--text-secondary);
  transition: all 0.3s ease-in-out;
}

.links a.active {
  background-color: var(--primary-color);
  border: 1px solid #262626;
  border-radius: 8px;
}

.transform {
  background-color: var(--primary-color);
  border: 0.5px solid var(--button-color);
  border-radius: 8px;
  padding: 14px 20px;
}

@media (max-width: 1048px) {
  .links {
    display: none;
  }
  .transform {
    display: none;
  }
}
