/*==========================================================
RESET
==========================================================*/

*,
*::before,
*::after{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

    -webkit-text-size-adjust:100%;

}

body{

    min-height:100vh;

    background:var(--color-background);

    color:var(--color-text);

    overflow-x:hidden;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}

img,
picture,
svg,
video,
canvas{

    display:block;

    max-width:100%;

    height:auto;

}

a{

    color:inherit;

    text-decoration:none;

}

button{

    border:none;

    background:none;

    cursor:pointer;

    font:inherit;

}

input,
textarea,
select,
button{

    font:inherit;

}

input,
textarea,
select{

    outline:none;

    border:none;

}

textarea{

    resize:vertical;

}

ul,
ol{

    list-style:none;

}

section{

    position:relative;

    width:100%;

}

:target{

    scroll-margin-top:110px;

}