* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Noto Sans TC', sans-serif;
}

p {
    line-height: 1.5em;
    margin-bottom: 10px;
}

.luck-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-self: center;
    width: 500px;
    height: 300px;
}

.luck-img {
    width: 30%;
}

.luck-img img {
    display: block;
    width: 80%;
    margin-left: 10%;
}

.luck-txt {
    width: 70%;
    padding-left: 10%;
}

.luck-txt h1 {
    color: #FF8200;
    margin-bottom: 10px;
    font-size: 48px;
}

.luck-txt h2 {
    color: #FF8200;
    font-size: 21px;
    margin-bottom: 20px;
}

.luck-txt a {
    padding: 10px 20px;
    background-color: #fff;
    border: 5px solid #FF8200;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    margin-bottom: 15px;
    color: #000;
    text-decoration: none;
    display: block;
    width: 200px;
    text-align: center;
}

.note {
    font-size: 13px;
}

@media (max-width: 599px) {

    .luck-content {
        width: 100%;
        height: 300px;
    }

    .luck-txt {
        width: 60%;
        padding-left: 0;
    }

}


@media (max-width: 480px) {


    .luck-content {
        flex-direction: column;
        width: 100%;
        height: auto;
        align-items: center;
    }

    .luck-txt {
        width: 80%;
        padding-left: 0;
        text-align: center;
    }


}

@media (max-width: 425px){
    .luck-txt a{
        width: 100%;
        font-size: 14px;
    }
}