a,
.btn{
  transition: all 300ms ease;
}

nav, .nav-links{
  display: flex;
}

nav{
  justify-content: space-between;
  align-items: center;
  height: 10vh;
  margin: 0 1.5rem;
}

.nav-links{
  gap: 2rem;
  list-style: none;
  font-size: 1.5rem;
}

a{
  color: black;
  text-decoration: none;
  text-decoration-color: white;
}

a:hover{
  color: gray;
}

.logo{
  font-size: 2rem;
  cursor: pointer;
}