* {       /* "*"為選取所有東西，現在在改字體 */
    font-family: "Poppins", sans-serif;
}

header{
    background-color:#202020;
    display: flex;
    
    align-items: center;

    height: 100px;
    padding: 0px 32px;   /*0為上下寬度，32為左右，也可寫成 0px 32px 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: 0.8rem;
}

#img-selector>button{
    border: none;
    aspect-ratio: 1/1;
    width: 14px;
    border-radius: 50%;
    background-color: #BFBFBF;
}

.active{
    background-color: #404040 !important; /*加上 !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>img>h4, #popular-products>a>span{
    width: 100%;
    text-align: center;
    display: block;
}
