/* ==========================================================
   RESET.CSS
   SovereignAqua Research & Development Foundation
   Modern CSS Reset
========================================================== */

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

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

    margin:0;

    padding:0;

    box-sizing:border-box;

}

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

html{

    scroll-behavior:smooth;

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

    text-size-adjust:100%;

}

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

body{

    min-height:100vh;

    font-family:var(--font-primary);

    background:var(--background);

    color:var(--text-primary);

    line-height:1.7;

    overflow-x:hidden;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}

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

img,
picture,
video,
canvas,
svg{

    display:block;

    max-width:100%;

    height:auto;

}

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

a{

    color:inherit;

    text-decoration:none;

}

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

ul,
ol{

    list-style:none;

}

/* ==========================================================
   FORM ELEMENTS
========================================================== */

input,
textarea,
select,
button{

    font:inherit;

}

button{

    cursor:pointer;

    border:none;

    background:none;

}

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

table{

    border-collapse:collapse;

    border-spacing:0;

}

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

blockquote,
q{

    quotes:none;

}

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

    content:"";

}

/* ==========================================================
   HIDDEN ATTRIBUTE
========================================================== */

[hidden]{

    display:none !important;

}
