@import url('https://fonts.googleapis.com/css2?family=Homemade+Apple&family=Outfit:wght@100..900&family=Poiret+One&display=swap');



nav {
    top: 0;
    left: 0;
    width: 100%;
    background: #ece2da;
}

nav ul {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    margin: 0;
}


nav ul li {
    display: inline;
    position: relative;
}

nav ul li a {
    font-family: Poiret one;
    text-decoration: none;
    color: #000000;
    font-size: 1.5rem;
    padding: 10px 15px;
    position: relative;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

nav ul li a::after {
    content: "";
    position: absolute; /* Prevents height change */
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #898989;
    transition: width 0.3s ease;
}

nav ul li a:hover {
    color: #898989;
}

nav ul li a:hover::after {
    width: 100%;
}