nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: top 0.3s ease;
  z-index: 1000;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0 3rem;
  background-color: var(--dark-color-3);
  color: var(--secondary-color);
}

.nav-content img {
  height: 100px;
  object-fit: cover;
}

.nav-content h1 {
  font-size: 2rem;
  font-weight: 300;
  margin: 0;
}

.nav-content ul {
  display: flex;
  gap: 1rem;
}

.nav-content ul li {
  list-style: none;
}

.nav-content ul li a {
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 1.2rem;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  .nav-content {
    padding: 0 1rem;
  }

  .nav-content img {
    transform: translateX(-30px);
  }

  .nav-content ul {
    display: none;
  }
}
