:root {
    --bg: #080808;
    --text: #ffffff;
    --muted: #a7a7a7;

    --red: #ff3b3b;
    --orange: #ff7b00;

    --container: 1280px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    color: var(--text);
    background: var(--bg);

    font-family: "Inter", sans-serif;

    overflow-x: hidden;
}

body.admin-bar .site-header {
    top: 54px;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}