/* ==========================================================
   WANGSID
   Reset CSS
   ========================================================== */

/* Box sizing */

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

/* Remove default spacing */

* {
    margin: 0;
    padding: 0;
}

/* Smooth scrolling */

html {
    scroll-behavior: smooth;
}

/* Body */

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

/* Media */

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

/* Form */

input,
button,
textarea,
select {
    font: inherit;
}

/* Button */

button {
    border: none;
    background: none;
    cursor: pointer;
}

/* Links */

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

/* List */

ul,
ol {
    list-style: none;
}

/* Table */

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

/* Heading */

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

/* Paragraph */

p {
    line-height: 1.7;
}

/* Quote */

blockquote {
    quotes: none;
}

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

/* Selection */

::selection {
    background: #C9A55B;
    color: #000;
}

/* Scrollbar */

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

::-webkit-scrollbar-track {
    background: #0d0d0d;
}

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

::-webkit-scrollbar-thumb:hover {
    background: #E4C47E;
}