/*
========================================================

Project : ZBITVERSE
Version : 1.0
File : reset.css

Description:
Browser Reset + Global Base

========================================================
*/

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

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

    margin:0;

    padding:0;

    box-sizing:border-box;

}


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

html{

    scroll-behavior:smooth;

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

}


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

body{

    background:var(--color-bg);

    overflow-x:hidden;

    min-height:100vh;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

}


/* ===========================
   IMAGES
=========================== */

img,
picture{

    display:block;

    max-width:100%;

}


/* ===========================
   BUTTONS
=========================== */

button{

    border:none;

    background:none;

    cursor:pointer;

    font:inherit;

}


/* ===========================
   INPUTS
=========================== */

input,
textarea,
select{

    font:inherit;

}


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

ul,
ol{

    list-style:none;

}


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

table{

    border-collapse:collapse;

    border-spacing:0;

}


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

a{

    text-decoration:none;

}


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

::selection{

    background:var(--color-primary);

    color:var(--color-white);

}
