/*=========================================================
=                         RESET                           =
=========================================================*/

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

html{
    scroll-behavior:smooth;
}

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

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

button{
    cursor:pointer;
}

ul,
ol{
    list-style:none;
}

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

/*---------- Accessibility ----------*/

:focus-visible{
    outline:2px solid var(--accent);
    outline-offset:3px;
    border-radius:2px;
}

::selection{
    background:var(--sunflower-soft);
    color:var(--primary-dark);
}
