*{
    padding: 0;
    margin: 0;
    list-style: none;
    box-sizing: border-box;
    font-size: 1rem;
    letter-spacing: 3px;
    position: relative;
}

html, body{
    width: 100%;
    position: relative;
    scroll-behavior: smooth;
}

a{
    text-decoration: none !important;
    color: #7A6A47;
}

a:hover{
    color: #7A6A47;
}

p, span{
    margin-bottom: 0;
    color: #7A6A47;
    font-family: 'Noto Sans TC', sans-serif;
}

p.content{
    text-align: justify;
    line-height: 200%;
}

h1{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0;
    color: #584435;
    font-family: 'Noto Sans TC', sans-serif;
}

body{
    background-image: url(../images/image/background.jpg);
    background-repeat: repeat-y;
    background-size: 100%;
    background-position: center;
    background-attachment: fixed;
}

.wrapper{
    width: 100%;
    overflow: hidden;
}

.linkBtn{
    display: flex;
    font-size: 0.85rem;
    font-weight: bold;
    color: #D1AE61;
}

.linkBtn:hover{
    color: #D1AE61;
}

.linkBtn p{
    color: #D1AE61;
    white-space: nowrap;
    margin-right: 2%;
}

.linkBtn::after{
    content: '';
    position: absolute;
    bottom: 0%;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: #D1AE61;
    transition: width .5s ease-in-out;
}

.linkBtn:hover::after{
    width: 100%;
    transition: width 1.5s ease-in-out;
}

.linkBtn .Arrow{
    width: 3.5vw;
    margin-top: -2%;
    margin-left: 3%;
    transition: all .5s ease-in-out;
}

@media screen and (max-width: 1560px){
    *{
        font-size: 0.95rem;
    }
    h1{
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 1024px){
    *{
        font-size: 0.867rem;
    }
    h1{
        font-size: 1rem;
    }
    .linkBtn .Arrow{
        width: 40px;
    }
}