/* --------------------- */
/* RESET MODERNO         */
/* --------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
  font-size: 100%; /* 16px base */
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    font-family: var(--font-base);
    background-color: var(--bg);
    color: var(--text-primary);
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none; 
}
button {
    border: none;
    background: none;
    cursor: pointer;
}
.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
}
