/* ===============================
   CSS RESET (modern)
   =============================== */

/* Box sizing */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove default margin */
* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: auto;
}


/* Body defaults */
html,
body {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

/* Media defaults */
img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
}

/* Remove built-in form typography */
input,
button,
textarea,
select {
    font: inherit;
}

/* Remove button styles */
button {
    background: none;
    border: none;
    cursor: pointer;
}

/* Links */
a {
    text-decoration: none;
    color: inherit;
}

/* Lists */
ul,
ol {
    list-style: none;
}

/* Tables */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Text overflow safety */
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

/* Root stacking context */
#root,
#__next {
    isolation: isolate;
}

:root {
    --font-family-base: 'Inter', sans-serif;
    --transition-all-time: all ease-in-out 300ms;
}

.container_content_page {
    max-width: 1680px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

