* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --background: #1a1a1a;
    --card-bg: #222222;
    --card-bg-hovered: #2a2a2a;
    --border: #383838;
    --border-hovered: #474747;
    --title: #f0f0f0;
    --text: #dbdbdb;
    --subtext: #888888;
    --accent: #ff0000;
    --accent-dimmed: #e9161675;
}

html {
    background-color: var(--background);
    font-family: 'Instrument Sans', sans-serif;
    font-weight: 500;
    color: var(--text);
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--title);
}

img {
    display: block;
    user-select: none;
}

a {
    color: var(--text);
    text-decoration: none;
}

.section-title {
    font-size: 28px;
    user-select: none;
}

.section-desc {
    margin-top: 4px;
    font-weight: 400;
    font-size: 16px;
    color: var(--subtext);
    user-select: none;
}

.error-text {
    font-weight: 600;
    color: orange;
}