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

*,
*::before,
*::after{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

/*==================================================
                    HTML
==================================================*/

html{

    scroll-behavior:smooth;

    -webkit-text-size-adjust:100%;

}

/*==================================================
                    BODY
==================================================*/

body{

    min-height:100vh;

    overflow-x:hidden;

}

/*==================================================
                    MEDIA
==================================================*/

img,
picture,
svg,
canvas,
video{

    display:block;

    max-width:100%;

    height:auto;

}

/*==================================================
                    FORMS
==================================================*/

input,
button,
textarea,
select{

    font:inherit;

    color:inherit;

    background:none;

    border:none;

}

button{

    cursor:pointer;

}

textarea{

    resize:vertical;

}

/*==================================================
                    LINKS
==================================================*/

a{

    color:inherit;

    text-decoration:none;

}

/*==================================================
                    LISTS
==================================================*/

ul,
ol{

    list-style:none;

}

/*==================================================
                    TABLES
==================================================*/

table{

    border-collapse:collapse;

    border-spacing:0;

}

/*==================================================
                    QUOTES
==================================================*/

blockquote,
q{

    quotes:none;

}

blockquote::before,
blockquote::after,
q::before,
q::after{

    content:"";

}

/*==================================================
                HIDDEN ELEMENTS
==================================================*/

[hidden]{

    display:none !important;

}

/*==================================================
                FOCUS
==================================================*/

:focus{

    outline:none;

}

:focus-visible{

    outline:2px solid transparent;

}

/*==================================================
                SELECTION
==================================================*/

::selection{

    text-shadow:none;

}

/*==================================================
                SCROLLBAR
==================================================*/

html{

    scrollbar-gutter:stable;

}