/* ==========================================================
   Farbod AI Search
   Version : v0.1.0
   File    : reset.css
========================================================== */

/* ===========================
   Box Model
=========================== */

*,
*::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;

    text-rendering:optimizeLegibility;

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

    overflow-x:hidden;

}

/* ===========================
   Images
=========================== */

img,
picture{

    display:block;

    max-width:100%;

    user-select:none;

}

/* ===========================
   Links
=========================== */

a{

    color:inherit;

    text-decoration:none;

}

/* ===========================
   Buttons
=========================== */

button{

    border:none;

    outline:none;

    background:none;

    cursor:pointer;

    font:inherit;

}

/* ===========================
   Inputs
=========================== */

input,
textarea,
select{

    border:none;

    outline:none;

    background:none;

    font:inherit;

    color:inherit;

}

/* ===========================
   Lists
=========================== */

ul,
ol{

    list-style:none;

}

/* ===========================
   Tables
=========================== */

table{

    border-collapse:collapse;

    border-spacing:0;

}

/* ===========================
   Headings
=========================== */

h1,
h2,
h3,
h4,
h5,
h6{

    font-weight:inherit;

}

/* ===========================
   Paragraph
=========================== */

p{

    line-height:1.8;

}

/* ===========================