:root {
    --font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --text-color: #333;
    --bg-color: #fff;
}

@font-face {
    font-family: "Hiragino Kaku Gothic Pro";
    src: url("assets/fonts/ヒラギノ角ゴ Pro W6.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Hiragino Kaku Gothic Pro";
    src: url("assets/fonts/ヒラギノ角ゴ Pro W3.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes fadeIn {
    from { opacity: 0 }
    to { opacity: 1 }
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.bless-text {
    font-family: var(--font-family);
    font-weight: 400;
}

.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.5s ease-out; 
}
/* TODO: make it like the KANON intro text */

.font-test-region {
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid #000;
    animation: fadeIn 0.5s ease-out 1s both;
}

.font-test-text {
    margin: 10px;
}