:root {
    --deepRed: #e83131;
    --lightGray: #f0f0f0;
}

* {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

a {
    text-decoration: none !important;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 16px;
    background-color: var(--lightGray);
}






.wrapper_full {
    width: 100%;
}

.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;
}


@media screen and (max-width: 1024px) {

    body {
        font-size: 12px;
    }

    .layer {
        padding: 25px 0;
    }

    .button {
        padding: 15px;
        font-size: 25px;
        line-height: 30px;
    }
    

}