@font-face {
    font-family: Inter;
    src: url(../fonts/Inter.ttf);
}

:root {
    --text: #0B0C0D;
    --primary: #86DD0D;
    --border: #e6e6e6;
    --background: #f1f1f1;
}

@media (prefers-color-scheme: dark) {
    :root {
        --text: #f1f1f1;
        --primary: #86DD0D;
        --border: #17191b;
        --background: #0B0C0D;
    }
}

*, *::after, *::before {
    margin: 0;
    padding: 0;

    font-family: Inter;
    color: var(--text);
}

img {
    height: 100%;
}

a {
    text-decoration: none;
    color: var(--primary);
}