* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    letter-spacing: 0.5px;
}

.text-xl, .text-2xl, .text-3xl, .text-4xl, .text-5xl, .text-6xl, .text-7xl, .text-8xl {
    font-weight: 300;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
}

::selection {
    background-color: rgba(180, 83, 9, 0.2);
    color: inherit;
}

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

::-webkit-scrollbar-track {
    background: #f5f5f5;
}

::-webkit-scrollbar-thumb {
    background: #b4530966;
    border-radius: 4px;
}

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

.navbar-scroll-shadow {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

img {
    display: block;
}

input, textarea {
    font-family: inherit;
    font-size: inherit;
}

input:focus, textarea:focus {
    outline: none;
}
