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

* {
    box-sizing: border-box;
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-text);
    background-color: var(--color-background);
}

/* Remove default margins and paddings */
h1, h2, h3, h4, h5, h6,
p, ul, ol, dl, dd,
blockquote, figure, fieldset, legend,
table, th, td, caption,
hr {
    margin: 0;
    padding: 0;
}

/* List styles */
ul, ol {
    list-style: none;
}

/* Link styles */
a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

/* Image styles */
img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

/* Table styles */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Form styles */
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

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

/* Remove focus outline for mouse users */
button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
    outline: none;
}