@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700&family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', 'Noto Sans TC', sans-serif;
    margin: 60px 0;
    color: #353B43;
    font-weight: 400;
    background: linear-gradient(180deg, #FFFFFF 0%, #ededed 100%);
    background-attachment: fixed;
    font-size: 14px;
}
h1 {
    color: #2C9AFF;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 700;
}
h2 {
    font-size: 1.125rem;
    margin: 45px 0 16px;
    font-weight: 500;
    color: #2C9AFF;
}
p {
    font-size: .875rem;
    text-align: justify;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
li {
	margin-bottom: .5rem;
}
.d-md {
    display: none;
}
.main {
    font-size: 1rem;
    text-align: center;
    color: #2C9AFF;
    font-weight: 500;
}
.container {
    margin: 0 30px;
}
.photo {
    width: 108px;
    border-radius: 999px;
    margin: 0 auto 25px;
    overflow: hidden;
}
.photo img {
    width: 100%;
    height: auto;
}
.bt-wrap {
    margin: 30px 0;
}
a.bt {
    display: block;
    border: 1px solid #353B43;
    border-radius: 10px;
    margin-bottom: 22px;
    font-size: 1.125rem;
    color: #353B43;
    text-decoration: none;
    text-align: center;
    letter-spacing: 2px;
    padding: 12px 22px;
}
a i {
    float: left;
    font-size: 24px;
}
footer {
    padding-top: 60px;
}
.logo {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    overflow: hidden;
    margin: 0 auto;
}
.logo img {
    width: 100%;
    height: auto;
}
@media (min-width:768px) {
    .d-sm {
        display: none;
    }
    .d-md {
        display: inline;
    }
    .container {
        width: 480px;
        margin: 0 auto;
    }
}