@import url('./base/variables.css');
@import url('./base/fonts.css');

@import url('./layout/container.css');
@import url('./layout/header.css');
@import url('./layout/footer.css');

/* =========================
   RESET / NORMALIZE LIGHT
========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    height: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-family: var(--font-main);
    font-weight: 300;
    color: var(--color-text);
    background-color: var(--site-background);
}

body.modal-open {
    overflow: hidden;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

main {
    flex: 1;
}

section{
    margin-bottom:  var(--header-height);
}

img{
    -webkit-user-drag: none;
    user-drag: none;
    user-select: none;
}