:root {
    --deepred: #6a90a0;
    --red: #8fb3c6;
    --lightred: #d1c0d2;
    --lightblue: #8fcae2;
}

* {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

a {
    text-decoration: none !important;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 16px;
}






.wrapper_full {
    width: 100%;
}

.wrapper {
    width: calc(100% - 50px );
    max-width: 1200px;
    margin: 0 auto;
}

.layer {
    width: 100%;
    padding: 50px 0;
    overflow: hidden;
}


.button {
    position: relative;
    top: 0;
    display: inline-block;
    width: 100%;
    max-width: 350px;
    line-height: 45px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    border: #fff 5px solid;
    background: var( --deepred );
    cursor: pointer;
    transition: .3s;
}

.button:hover {
    top: -3px;
}


.title {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 25px;
    font-size: 18px;
}

.title .head {
    width: 100%;
    margin-bottom: 10px;
    line-height: 50px;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    color: var(--deepred );
    border-bottom: #aaa 1px solid;
}


@media screen and (max-width: 1024px) {

    body {
        font-size: 12px;
    }

    .layer {
        padding: 25px 0;
    }

    .button {
        padding: 15px;
        font-size: 25px;
        line-height: 30px;
    }

    .title {
        font-size: 14px;
    }

    .title .head {
        font-size: 25px;
    }
    

}