:root {
    --bg-page: #191919;
    --bg-panel: #1a1a1a;
    --bg-panel-2: #1e1e1e;
    --bg-header: #191919;
    --bg-nav: #252525;
    --accent: #f7931e;
    --accent-2: #f5a623;
    --accent-dark: #d97d0f;
    --text-primary: #ffffff;
    --text-muted: #b9b9b9;
    --text-faint: #8a8a8a;
    --border-subtle: #2b2b2b;
    --radius-md: 8px;
    --radius-lg: 16px;
    --script-font: "Courgette", cursive;
}

* {
    box-sizing: border-box;
}

html {
    overflow-y: scroll;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    background: var(--bg-page);
    color: var(--text-primary);
    font-family: "Bitter", Georgia, "Times New Roman", serif;
}

h1, h2, h3, h4 {
    font-family: "Bitter", Georgia, serif;
    margin: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

img {
    max-width: 100%;
    display: block;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}
