@charset "utf-8";

/* =========================
   Fonts
   ========================= */
@font-face {
    font-family: Heebo;
    src: url("../fonts/Heebo-Regular.ttf");
    font-display: swap;
}

@font-face {
    font-family: Heebo;
    src: url("../fonts/Heebo-Bold.ttf");
    font-display: swap;
    font-weight: bold;
}

/* =========================
   Base / Reset
   ========================= */
:root {
    --ink: #111;
    --muted: rgba(17, 17, 17, .72);
    --bg: #ffffff;

    --hdr-bg: rgba(255, 255, 255, .88);
    --hdr-stroke: rgba(0, 0, 0, .08);
    --hdr-text: #111;
    --hdr-muted: rgba(17, 17, 17, .72);
    --hdr-brand: #8fb3a5;
    --hdr-shadow: 0 14px 30px rgba(0, 0, 0, .10);
    --hdr-r: 18px;

    --f-bg: rgba(255, 255, 255, .88);
    --f-stroke: rgba(0, 0, 0, .08);
    --f-text: #111;
    --f-muted: rgba(17, 17, 17, .72);
    --f-brand: #8fb3a5;
    --f-shadow: 0 16px 34px rgba(0, 0, 0, .10);
    --f-r: 22px;
}

* {
    box-sizing: border-box;
    text-decoration: none;
    font-family: Heebo, serif;
    transition: .3s;
    color: var(--ink);
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 16px;
    color: var(--ink);
    line-height: initial;
    font-family: Heebo, serif;
    margin: 0;
    background: var(--bg);
}

pre {
    white-space: pre-wrap;
    margin: 0;
}

main {
    background-image: url("/images/bg_2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
