* {
    margin: 0;
    font-family: "poppins", sans-serif;
    box-sizing: border-box;
}

.header {
    height: auto;
    width: 100%;
    padding: 0 8%;
    background: rgb(243, 236, 230);
    position: sticky;
    top: 0;
    z-index: 99999;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.logo {
    width: 140px;
}

.nav-links {
    padding: 28px 0;
    text-align: right;
}

.nav-links li {
    display: inline-block;
    margin: 0 15px;
}

.nav-links li a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    padding: 5px 0;
    position: relative;

}

.nav-links li a::after {
    content: '';
    background: #000000;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.5s;
}

.nav-links li a:hover::after {
    width: 100%;
}