/* ==========================================================================
   Rao Nete Website
   reset.css
   Version: 1.0
   ========================================================================== */


/* ==========================================================================
   BOX SIZING
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}


/* ==========================================================================
   RESET MARGINS & PADDING
   ========================================================================== */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
main,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
}


/* ==========================================================================
   HTML5 ELEMENTS
   ========================================================================== */

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section {
    display: block;
}


/* ==========================================================================
   ROOT
   ========================================================================== */

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}


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

body {
    min-height: 100vh;
    line-height: 1.5;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


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

img,
picture,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
    height: auto;
}


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

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
    background: transparent;
    border: none;
    outline: none;
}

textarea {
    resize: vertical;
}

button {
    cursor: pointer;
}


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

a {
    color: inherit;
    text-decoration: none;
}


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

ul,
ol {
    list-style: none;
}


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

table {
    border-collapse: collapse;
    border-spacing: 0;
}


/* ==========================================================================
   HEADINGS
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}


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

blockquote,
q {
    quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
    content: "";
}


/* ==========================================================================
   STRONG & EMPHASIS
   ========================================================================== */

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}


/* ==========================================================================
   HORIZONTAL RULE
   ========================================================================== */

hr {
    border: 0;
    height: 1px;
}


/* ==========================================================================
   FIELDSET
   ========================================================================== */

fieldset {
    min-width: 0;
}


/* ==========================================================================
   DETAILS
   ========================================================================== */

summary {
    cursor: pointer;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}


/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

[hidden] {
    display: none !important;
}

:focus:not(:focus-visible) {
    outline: none;
}


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

::selection {
    background: rgba(200, 156, 61, 0.25);
}


/* ==========================================================================
   SCROLLBAR (WEBKIT)
   ========================================================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 999px;
}


/* ==========================================================================
   END OF FILE
   ========================================================================== */