/*
|--------------------------------------------------------------------------
| Aanya Organics Theme
|--------------------------------------------------------------------------
| Module : Design System
| File   : reset.css
|--------------------------------------------------------------------------
*/

/* Box sizing */

*,
*::before,
*::after{
    box-sizing:border-box;
}

/* Remove default margins */

*{
    margin:0;
}

/* Better scrolling */

html{
    scroll-behavior:smooth;
    -webkit-text-size-adjust:100%;
}

/* Body */

body{

    min-height:100vh;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

    font-family:var(--font-body);

    color:var(--color-text);

    background:var(--color-background);

    line-height:var(--line-height-normal);

    overflow-x:hidden;

}

/* Media */

img,
picture,
svg,
video,
canvas{

    display:block;

    max-width:100%;

}

/* Forms */

input,
button,
textarea,
select{

    font:inherit;

}

/* Buttons */

button{

    cursor:pointer;

    border:none;

    background:none;

}

/* Lists */

ul,
ol{

    list-style:none;

}

/* Links */

a{

    text-decoration:none;

    color:inherit;

}

/* Tables */

table{

    border-collapse:collapse;

    border-spacing:0;

}

/* Headings */

h1,h2,h3,h4,h5,h6{

    overflow-wrap:break-word;

}

/* Paragraphs */

p{

    overflow-wrap:break-word;

}

/* WordPress Images */

.wp-post-image{

    height:auto;

}

/* Hidden */

[hidden]{

    display:none !important;

}