a {
    text-decoration: none;
}

/* Website name styles */
.website-name {
    font-size: clamp(2.5rem, 7vw, 3em);
    font-family: var(--ff-accent), sans-serif;
    color: var(--clr-neutral-400);
    margin-bottom: 0.5rem;
}

/* Navigation link styles */
.nav-links {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links li a {
    position: relative;
    text-decoration: none;
    font-size: var(--fs-400);
    color: var(--clr-neutral-400);
    margin-right: 1rem;
}

nav a::before {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background-color: var(--clr-neutral-400);
    position: absolute;
    bottom: -2px;
    transition: all ease-in-out 250ms;
}

nav a:hover::before {
    width: 100%;
}

/* Media query for mobile screens */
@media (min-width: 50em) {
  .nav-links {
    flex-wrap: wrap;
  }

  .nav-links li {
    display: block;
    margin: 0.05rem 0;
  }
}