@import url("https://fonts.googleapis.com/css?family=Raleway:400,100,200,300,500,600,800,700,900");
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    //font-family: "Georgia", "Times New Roman", "微軟正黑體", serif;
    font-family: 'Raleway', sans-serif;
    letter-spacing: .06em;
}

html {
    height: 100%;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1 0 auto;
    width: 100%;
}

.section.site-main {
    min-height: calc(100vh - var(--navbar-height, 4rem));
}

/* Sections-basic */
.section {
    padding: 5rem 2rem;
    text-align: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section p {
    max-width: 800px;
    margin: 0 auto 2rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .section {
        padding: 3rem 1rem;
    }
}