﻿/* =========================
   GLOBAL / BASE
   ========================= */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Lexend Deca", Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
}

* {
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}
