/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

@font-face {
    font-family: "JetBrains Mono";
    src: url("/assets/JetBrainsMono-Medium-4c06e7a1.woff2") format('woff2');
}

:root {
    /* Colours */
    --bg-color: #111111;
    --primary-color: #0A0A0A;
    --accent-color: #C52233;
    --secondary-accent-color: #A51C30;
    --white-color: #F8F8F8;
    --border-color: #1a1a1a;
    --border-highlighted-color: #71717a;
    --font-gray: #71717A;

    /* Typography */
    --font-main: "JetBrains Mono", sans-serif;
    --font-main-weight: 300;
    --font-weight-medium: 400;
}

body {
    background-color: var(--bg-color);
    color: var(--white-color);
    font-family: var(--font-main);
    font-weight: var(--font-main-weight);

}

.content {
    width: 100%;
    max-width: 100%;
}

