@font-face {
    font-family: 'TWS';
    src: url('/fonts/tws.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'TWKaitiUYiXing';
    src: url('/fonts/台灣楷體-烏衣行.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html,
body {
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body {
    font-family: "Noto Sans TC", "微軟正黑體", sans-serif !important;
    background-color: #ffc000 !important;
    font-size: 1.3rem !important;
    font-weight: 400 !important;
}

body:after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 15%;
    background: #fff7d1;
    z-index: -1;
}

.main-header {
    background-color: #fff7d1;
    padding: 10px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Header Inner */
.header-inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo {
    height: 28px;
}

.header-right {
    display: flex;
    gap: 10px;
}

/* Footer */
.footer {
    position: relative;
    width: 100%;
    height: 56px;
    text-align: center;
    padding-top: 3rem;
    flex-shrink: 0;
    font-size: 16px;
    color: rgb(108, 117, 125);
    z-index: 1;
    display: block;
    align-items: center;
    justify-content: center;
    content: "";
}

.footer a {
    color: rgba(13, 110, 253, 1);
    text-decoration: none;
}

.footer a:hover {
    color: rgb(10, 88, 202);
}

