/*
Theme Name: My Theme
Version: 1.0
*/

/* ======================
   BASE RESET
====================== */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ======================
   DOCUMENT
====================== */

html {
    font-size: 14px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    min-height: 100vh;

    background-color: var(--color-bg);
    color: var(--color-black);

    font-family: var(--font-primary);
    font-optical-sizing: auto;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    font-variation-settings: "GRAD" 0;

    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ======================
   MEDIA
====================== */

img,
picture,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

/* ======================
   FORMS
====================== */

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

/* ======================
   LINKS
====================== */

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

/* ======================
   LISTS
====================== */

ul,
ol {
    list-style: none;
}

/* ======================
   TYPOGRAPHY
====================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font: inherit;
    font-weight: 700;
    line-height: 1.2;
}

p {
    line-height: 1.5;
}

strong,
b {
    font-weight: 700;
}
