@import url('sections/header.css');
@import url('base.css');
@import url('sections/projets.css');
@import url('sections/grid.css');


::selection {
    background: #333333; /* couleur de fond lors de la sélection */
    color: white;      /* couleur du texte sélectionné */
}


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


@font-face {
    font-family: 'JetBrains Mono';
    src: url('../assets/fonts/JetBrainsMono-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 700; /* Indique que cette fonte couvre les poids de 100 à 700 */
    font-style: normal;
}


:root {
    font-size: 16px;
    --page-padding: 2rem;
    --color-text: #000;
    --color-bg: #fff;
    --color-link: rgba(0,0,0,0.8);
    --color-link-hover: #000;
    --color-list-item: #000;
    --color-title: #000;
    --color-number: #000;
    --color-bg-effect: white;
    --blendmode-effect: difference;
    --bg-blur: 0px;
    --font-size-list-item: 18px;
}

body {
    margin: 0;
    color: var(--color-text);
    background-color: var(--color-bg);
    font-family: "JetBrains Mono", monospace;
    font-optical-sizing: auto;
    text-transform: uppercase;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

body::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /*background-image: repeating-linear-gradient(transparent, transparent 2px, #0000003d 3px);*/
    background-size: auto 100%;
    pointer-events: none;
}
