:root {
    --primary-background-color: black;
    --primary-text-color: rgb(245, 245, 255);
    --primary-font-family: 'Poppins';
    --secondary-text-color: rgb(50, 50, 50);
    --secondary-font-family: 'JetBrains Mono';
    --tertiary-background-color: #15151a;
    --tertiary-text-color: #353540;
}

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

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    min-height: 100%;
    font-family: var(--primary-font-family);
    background-color: var(--primary-background-color);
    color: var(--primary-text-color);
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    font-size: inherit;
}

h1 {
    position: absolute;
    left: 35px;
    font-family: var(--primary-font-family);
    font-weight: 800;
    font-size: 18px;
    user-select: none;

    img {
        width: 32px;
        vertical-align: middle;
        margin-right: 5px;

        @media screen and (width < 1045px) {
            width: 48px;
        }
    }
}