@font-face {
    font-family: 'Noto Sans TC Light';
    src: url(../fonts/Noto_Sans_TC/NotoSansTC-Light.otf)format('woff2');
}

footer {
    height: 150px;
    padding: 10px 4%;
    background-color: #A2550B;
}

.logo img {
    height: 50px;
}

ul {
    list-style-type: none;
}

footer .nav-item a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 300;
    font-size: 16px;
    font-family: 'Noto Sans TC Light';
    margin-left: 20px;
}

.location,
.copy {
    color: #ffffff;
    font-weight: 300;
    font-size: 16px;
    font-family: 'Noto Sans TC Light';
    display: flex;
    flex-direction: row;
    justify-content: end;
}

@media screen and (max-width: 1240px) {
    footer {
        padding: 10px 2%;
    }
}

@media screen and (max-width: 1029px) {
    footer .nav-item a {
        text-decoration: none;
        color: white;
        font-size: 12px;
        margin-left: 20px;
    }

    .location,
    .copy {
        font-size: 12px;
    }
}

@media screen and (max-width: 576px) {
    footer {
        height: 15vh;
        padding: 10px 20px;
    }

    .logo img {
        height: 30px;
    }

    .location {
        display: flex;
        flex-direction: column;
        justify-content: end;
    }

    .location p {
        display: none;
    }
}