* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html,
body {
    height: 100%;
}
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-size: 14px;
    line-height: 1.5;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}
input,
select,
textarea {
    font: inherit;
    color: inherit;
}
img,
svg {
    display: block;
    max-width: 100%;
}
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    color: var(--text);
    line-height: 1.2;
    letter-spacing: -0.01em;
}
h1 {
    font-size: 32px;
    font-weight: 800;
}
h2 {
    font-size: 22px;
    font-weight: 700;
}
h3 {
    font-size: 17px;
    font-weight: 700;
}
h4 {
    font-size: 15px;
    font-weight: 600;
}
.muted {
    color: var(--text-muted);
}
.hidden {
    display: none !important;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-thumb {
    background: #d8e0db;
    border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
    background: #bcc7c0;
}
::-webkit-scrollbar-track {
    background: transparent;
}

/* Backgrounds */
.app-bg {
    background-image: url("../assets/images/bg.jpg");
    background-size: 700px;
    background-position: top left;
    background-repeat: repeat;
    background-color: white;
}

/* Focus */
:focus-visible {
    outline: 2px solid var(--green-500);
    outline-offset: 2px;
    border-radius: 6px;
}
