/* CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* Remove default link styles */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove default button styles */
button {
    border: none;
    background: none;
    font: inherit;
    cursor: pointer;
    padding: 0;
}

button:focus {
    outline: none;
}

/* Remove default input styles */
input,
textarea,
select {
    font: inherit;
    border: none;
    background: none;
}

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

/* Image defaults */
img {
    max-width: 100%;
    display: block;
}

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