body {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.5px;
    height: 100vh;
}

h1 {
    font-size: clamp(20px, 4vw, 30px);
    line-height: 1.2;
    margin-bottom: 40px;
    margin-top: 150px;
}

main {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
}

summary {
    font-size: 1rem;
    font-weight: 600;
    background-color: #fafafa;
    color: #666666;
    padding: 1rem;
    margin-bottom: 1rem;
    outline: none;
    border-radius: 0.25rem;
    border: #e1e1e1 1px solid;
    text-align: left;
    cursor: pointer;
    position: relative;
}

p {
    text-align: left;
}

details[open] summary~* {
    animation: sweep .5s ease-in-out;
    margin-bottom: 15px;
}

@keyframes sweep {
    0% {
        opacity: 0;
        margin-top: -10px
    }
    100% {
        opacity: 1;
        margin-top: 0px
    }
}

details>summary::after {
    position: absolute;
    content: "+";
    right: 20px;
}

details[open]>summary::after {
    position: absolute;
    content: "-";
    right: 20px;
}

details>summary::-webkit-details-marker {
    display: none;
}

ul a {
    color: #6b6a69;
    font-weight: 600;
}

ul li a:hover {
    color: #E8B658;
    font-weight: 600;
}

ul li {
    color: #a4a4a4;
    font-weight: 400;
}

ul li a:focus {
    color: #E8B658;
    font-weight: 600;
}

ul li a:active {
    color: #E8B658;
    font-weight: 600;
}

ul {
    list-style-type: none;
}

@media (max-width: 991.98px) {
    main {
        padding: 20px 0;
        overflow-x: hidden;
    }
}

.wrapper {
    min-height: 100%;
    /*外層高度100%*/
    margin-bottom: 50px;
    /*隨footer高度需做調整*/
}