html {
    min-height: 100vh;
    scroll-behavior: smooth;

    body {
        background-color: var(--bg-color);
        display: flex;
        flex-direction: column;
        padding-top: 3.5rem;
        font-family: 'open_sansregular';
        font-weight: 400;
        min-height: 100vh;
        color: var(--font-color);
        @include transition() {}

        &.is-accessible {
            font-family: 'lucioleregular';

            .text-justify {
                text-align: left;
            }
        }

        footer.footer {
            margin-top: auto;
            padding: 2rem 0.7rem 1.5rem;
            background-color: var(--footer-color);
            @include transition() {}
        }

        a {
            color: var(--link-color);
            cursor: pointer;
            @include transition() {}

            &:hover {
                color: var(--font-color);
            }
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            color: var(--font-color);
        }

        h1 {
            margin-top: 2rem;
        }

        pre {
            font-family: 'fira_codelight';
            margin: 0.75rem 0;
            padding: 0.75rem;
            border-left: 2px solid $nord10;
            background: var(--box-bg-color);
            color: var(--font-color);
        }
    }
}

.layout-maxed {
    @include respond-to("small") {
        padding: 0 0.7rem;
    }
}

.is-hidden {
    display: none;
}

.ml-4 {
    margin-left: 1rem;
}

.sm-hidden {
    display: none;

    @include respond-to("small-up") {
        display: initial;
    }
}

.is-danger {
    color: $nord12;
}