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

html {
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    line-height: 1.55;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

body {
    min-height: 100vh;
    overflow-x: clip;
}

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

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

input,
button,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

::selection {
    background-color: var(--pink);
    color: var(--cream);
}
