@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100;300;400;500;700;900&family=Shrikhand&display=swap');

:root {
    --fontColor: #333;
    --mainRed: #ff7a73;
    --deepRed: #eb1c24;
    --focusYellow: #fff280;
}

* {
    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(--fontColor);
}

.wrapper_full {
    width: 100%;
}

.layer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 50px 0;
    margin-top: -2px;
    overflow: hidden;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1080px;
    padding: 0 25px;
}

.content {
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    padding: 50px 0 100px;
}

.main_title {
    height: 150px;
    margin-bottom: 50px;
}

.sub_title {
    margin: -25px 0 50px 0;
    padding: 15px 25px;
    border-radius: 50px;
    font-size: 25px;
    font-weight: 700;
    color: white;
    background: var(--mainRed);
}

.button {
    position: relative;
    top: 0;
    width: 150px;
    height: 50px;
    margin-top: 10px;
    line-height: 50px;
    font-size: 1.25em;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: .2s;
}

.button:hover {
    top: -5px;
}

* + .button {
    margin-top: 25px;
}

@media screen and (max-width: 1023px) {

    .layer {
        padding: 25px 0;
    }

    .content {
        padding: 25px 0;
    }
    
    .main_title {
        height: 63px;
        margin-bottom: 25px;
    }
    
    .sub_title {
        margin: 0px 0 25px 0;
        padding: 10px 15px;
        font-size: 20px;
    }

    .button {
        width: 100px;
        height: 35px;
        line-height: 35px;
        font-size: 1em;
    }


}