/* ==========================================================
   RESET
========================================================== */

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

/* ==========================================================
   DOCUMENT
========================================================== */

html{

    scroll-behavior:smooth;

}

body{

    min-height:100vh;

    font-family:var(--font-family);
    font-size:var(--font-size-md);
    font-weight:var(--font-weight-regular);

    color:var(--text);

    line-height:1.6;

    background:
        radial-gradient(
            circle at top left,
            rgba(37,99,235,.06),
            transparent 35%
        ),
        radial-gradient(
            circle at bottom right,
            rgba(96,165,250,.05),
            transparent 40%
        ),
        var(--background);

    -webkit-font-smoothing:antialiased;

    text-rendering:optimizeLegibility;

}

/* ==========================================================
   SELECTION
========================================================== */

::selection{

    background:var(--primary);

    color:#fff;

}

/* ==========================================================
   ACCESSIBILITY
========================================================== */

:focus-visible{

    outline:2px solid var(--primary);

    outline-offset:3px;

}

/* ==========================================================
   IMAGES
========================================================== */

img{

    display:block;

    max-width:100%;

    height:auto;

}

/* ==========================================================
   LINKS
========================================================== */

a{

    color:inherit;

    text-decoration:none;

}

/* ==========================================================
   BUTTONS
========================================================== */

button{

    border:none;

    background:none;

    cursor:pointer;

    font:inherit;

}

/* ==========================================================
   LISTS
========================================================== */

ul,
ol{

    list-style:none;

}

svg{

    display:block;

}

input,
textarea,
select{

    font:inherit;

}

