@import url(reset.css);
@import url(fonts/commitmono-poekot-full/stylesheet.css);

* {
    cursor: crosshair;
}

body {
    --main-color: 240, 240, 244;
    --second-color: 32, 29, 29;
    --contentPadding: 2.3vw;
    background-color: rgb(var(--second-color));
    color: rgb(var(--main-color));

    font-family: 'commitmono';
    font-variation-settings: 'wght' 400;
}

a,
a:visited {
    text-decoration: none;
    color: rgb(var(--main-color));
}

a:active {
    color: rgb(var(--main-color), 0.7);
}

a:hover,
a:focus {
    font-variation-settings: 'wght' 500;
}

h1 {
    user-select: none;
}

/* LISTES */

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#back:hover::before {
    content: "< ";
}

.nav li:hover::before {
    content: "> ";
}

.nav {
    font-size: 1.4em;
    font-variation-settings: 'wght' 300;
    margin-left: 0.6vw;
}

li {
    margin-top: 3px;
    margin-bottom: 3px;
}

.intro a {
    color: rgba(var(--secondary-color), 0.7);
}

/* CSS SMARTPHONE */

@media only screen and (max-width: 800px) {
    body {
        background-color: lightblue;
    }
}