:root {
    --gray: #333;
    --red: #e78077;
    --lightred: #f1a198;
    --blue: #0680a5;
    --lightblue: #7ee0ea;
    --yellow: #ffe8ca;
}


* {
    box-sizing: border-box;
}

*:focus {
    outline: none;
}

a {
    text-decoration: none !important;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    font-size: 1em;
    color: var(--gray);
}


h2 {
    font-size: 35px;
    text-align: center;
    margin-bottom: 25px !important;
}

h3 {
    font-size: 20px;
}

.subtitle {
    font-size: 20px;
}





.wrapper_full {
    width: 100%;
}

.layer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 50px 0 150px 0;
    margin-top: -2px;
    overflow: hidden;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc( 100% - 50px );
    max-width: 750px;
}




.button {
    position: relative;
    top: 0;
    display: inline-block;
    width: 250px;
    padding: 20px;
    font-size: 25px;
    font-weight: 700;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    background: var(--red);
    cursor: pointer;
    transition: .3s;
}

* + .button {
    margin-top: 50px;
}

.button:hover {
    top: -3px;
}


@media screen and (max-width: 1024px) {

    h2 {
        font-size: 20px;
        margin-bottom: 15px !important;
    }
    
    h3 {
        font-size: 14px;
    }    

    p {
        font-size: 12px;
    }

    .subtitle {
        font-size: 14px;
    }

    .layer {
        padding: 25px 0 100px;
    }

    .button {
        padding: 15px;
        font-size: 14px;
    }

    * + .button {
        margin-top: 25px;
    }
    

}