@import "fonts.css";

:root {
    --background-color: #ffffff;
    --foreground-color: #202020;
}

html {
    width: 100%;
    height: 100%;

    background-color: var(--background-color);
    color: var(--foreground-color);

    font-family: "Open Sans", sans-serif;
}

body {
    margin: auto;

    display: flex;
    flex-direction: column;

    /* position: relative; */

    width: 100%;
    max-width: 1024px;

    height: 100%;

    &:before {
        content: "";

        display: block;
        position: absolute;

        inset: 0;

        width: 100%;
        max-width: 1024px;
        margin: auto;

        border-left: solid 1px var(--foreground-color);
    }
}

header {
    /* position: relative; */

    &:before {
        content: "";

        display: block;
        position: absolute;

        inset: 0;

        height: 64px;

        border-bottom: solid 1px var(--foreground-color);
    }
}

main {
    flex: 1;

    display: flex;
    flex-direction: column;

    justify-content: center;

    margin: 8px;
}

footer {
    text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
}

a {
    color: unset;

    text-decoration: none;

    &:hover {
        text-decoration: underline;
    }
}

#logo {
    text-decoration: none;
    color: var(--foreground-color);
    font-family: "Montserrat", sans-serif;

    line-height: 64px;
    font-size: 1.5em;

    &::before {
        content: "";

        display: inline-block;
        background-color: var(--foreground-color);

        width: 64px;
        height: 64px;

        float: left;

        mask-image: url(/img/logo-black.svg);
        mask-size: 100% 100%;
    }
}
