/* CSS Reset */

/* Remove default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove default list styles */
ul, ol {
    list-style: none;
}

/* Remove default link styles */
a {
    color: inherit;
    text-decoration: none;
}

/* Remove default button styles */
button {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
}

/* Remove default form styles */
input, textarea, select {
    font: inherit;
    color: inherit;
    background: inherit;
}

/* Remove default table styles */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Ensure images scale correctly */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ensure svg scales correctly */
svg {
    max-width: 100%;
    height: auto;
}

/* Remove default heading styles */
h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
    font-size: inherit;
}

/* Remove default paragraph styles */
p {
    font: inherit;
}

/* Remove default quote styles */
blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

/* Remove focus outline only on non-keyboard interactions */
:focus-visible {
    outline: 2px solid var(--color-green);
    outline-offset: 2px;
}

/* HTML5 display roles */
article, aside, figcaption, figure, footer, header, main, nav, section {
    display: block;
}
