:root {
    --bg: #76222C;
    --accent: #faced3;
    --fg: #fee8ea;
    --hover: #FFEF9C;
}

html {
    background-color: var(--bg);
    margin: auto;
    display: flex;
    min-height: 100vh;
}

body {
    width: 100%;
    margin: auto;
    padding: 0;
    line-height: 1.4;
    font-family: Inter, "Noto Sans CJK", sans-serif;

    color: var(--fg);
}

img {
    max-width: 100%;
    width: auto;
    height: auto;
    margin: auto;
    margin: auto;
    padding: auto;

    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
}

header {
    padding-top: 48px;
    text-align: center;
}

.hero-image {
    width: min(320px, 75%)
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 600;
    color: #FFEF9C;
}

a {
    color: var(--accent)
}

a:hover {
    color: var(--hover) !important;
    text-decoration: none !important;
}

footer {
    text-align: center;
}