*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;

    margin: 0;
}

.bg-lol {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

main {
    padding-top: 20vh;
    min-height: 100vh;
}

.title {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

body a {
    touch-action: manipulation;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

hr {
    border: none;
    height: 2px;
    border-radius: 2px;
    margin: 2rem 0;
}

.fog {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 1500;
    pointer-events: none;
}

#documents {
    margin-bottom: 70vh;
}

@media (max-width: 1280px) {
    main {
        margin-top: 1em;
        margin-left: 5em;
        margin-right: 5em;
    }

    #documents {
        margin-bottom: 10vh;
    }
}

@media (max-width: 768px) {
    main {
        margin-top: 1em;
        margin-left: 0em;
        margin-right: 0em;
    }
}