:root {
    --bg: #d7d8df;
    --card: #f5f6f8;
    --text: #0f1e3f;
    --muted: #5f739b;
    --line: #c8d2e4;
    --blue: #2563eb;
    --blue-dark: #1d4ed8;
    --text-size: 15px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--text);
    font-family: "Satoshi", sans-serif;
    font-size: var(--text-size);
}

body.mobile-editor-open {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
}

a {
    font-size: var(--text-size);
    color: var(--blue);
    text-decoration: none;
    font-weight: 700;
}
