/* Root CSS File */

@import url(nav.css);
@import url(footer.css);

/* Color Palette */

* {
    --background: #f7f7f9;
    --color: #19191e;

    color: var(--color);
}

/* Default Style */

*::selection {
    background: #00000030;
}

html, body {
    margin: 0;
    height: 100vh;
    font-family: 'SUITE Variable', sans-serif;
    background: #f7f7f9;
}

main, article {
    width: 60%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.select-lock {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -webkit-user-drag: none;
}

/* Mobile Support */

@media screen and (max-width: 1600px) {
    main, article {
        width: 75%;
    }
}

@media screen and (max-width: 1023px) {
    main, article {
        width: 90%;
    }
}