: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/HiraginoKakuGo_Pro_latin.woff2") format("woff2");
    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(--sm-text, var(--text-color));
    background: var(--sm-bg, var(--bg-color));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 100vh;
    text-align: center;
}

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

.main-content {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 1rem;
    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;
}
