@font-face {
    font-family: SUSE;
    src: url(assets/fonts/SUSE/SUSE-VariableFont_wght.ttf);
}

:root {
    --background: #333333;
    --text: #ededed;
    --secondary: #adadad;
    --accent: #43ef32;
}

* {
    margin: 0;
    box-sizing: border-box;

    font-family: SUSE;
    font-optical-sizing: auto;
    font-style: normal;
    font-synthesis: none;
    text-rendering: optimizeLegibility;

    scroll-behavior: smooth;
}

body {
    width: 100vw;
    min-height: 100vh;

    padding: 100px 0;

    display: grid;
    place-items: center;

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

a, b {
    color: var(--accent);

    &:focus {
        outline: none;
    }
}

ul {
    list-style-type: square;
}

li::marker {
    color: var(--secondary);
}

#root {
    width: 300px;

    display: flex;
    flex-direction: column;
    place-items: center;
    gap: 20px;

    & > div {
        width: 100%;

        display: flex;
        flex-direction: column;
        gap: 10px;

        & > h3 {
            position: relative;

            &::before {
            content: "#";

            position: absolute;
            left: -17.5px;

            color: var(--accent);
        }
    }
}

#header {
    place-items: center;

    & > img {
        width: 100px;
        aspect-ratio: 1;
    }
}
