/* ==========================================================
   VINCIT MANAGEMENT CONSULTING
   FILE       : 02-reset.css
   PURPOSE    : Global CSS Reset & Browser Normalization
   VERSION    : 1.0.0
========================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}


body {
    margin: 0;
    padding: 0;
    min-height: 100vh;

    background: var(--bg-primary);
    color: var(--color-text);

    font-family: var(--font-body);
    font-weight: var(--weight-regular);

    line-height: 1.7;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


img {
    display: block;
    max-width: 100%;
    height: auto;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    border: 0;
    cursor: pointer;
}


a {
    color: inherit;
    text-decoration: none;
}


ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}


h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}


p {
    margin-bottom: 0;
}


::selection {
    background: var(--color-navy);
    color: var(--color-white);
}