* {
    font-family: "Poppins", serif;
}

header {
    background-color: #202020;
    display: flex;
    align-items: center;

    height: 100px;
    padding: 0px 32px;
}

#logo-link {
    display: block;
    width: 160px;
    margin: 0 20px 0 0;

    transform: translate(0, 2px);
}

ul {
    display: flex;
    list-style: none;

    gap: 36px;
}

nav a {
    color: #ccc;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

#landing-section>img {
    width: 100%;
}

#img-selector{
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: .8rem;
}

#img-selector>button{
    border: none;
    aspect-ratio: 1/1;
    width: 14px;
    border-radius: 50%;
    background-color: #BFBFBF;
}

.active {
    background-color: #404040 !important;
}

#popular-section>h2{
    text-align: center;
    font-size: 2.5rem;
    font-weight: 300;
}

#popular-products {
    display: flex;
}

#popular-products>a {
    max-width: 250px;
    text-decoration: none;
    color: #202020;
}
#popular-products>a>img {
    width: 100%;
}

#popular-products>a>h4, #popular-products>a>span {
    width: 100%;
    text-align: center;
    display: block;
}