/* Explain: Base reset and typography defaults for GreenPath */
* {
    box-sizing: border-box;
}

html {
    background: var(--background-color);
    color: var(--text-color);
    text-rendering: optimizeLegibility;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--mint-color);
    color: var(--primary-color);
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
}

button,
a,
summary {
    cursor: pointer;
}

summary::-webkit-details-marker {
    display: none;
}

fieldset {
    min-width: 0;
    margin: 0;
    border: 0;
    padding: 0;
}
