/* ==================================================
   LOCAL FONTS
================================================== */
@font-face {
    font-family: "Geist";
    src: url("../fonts/geist-variable.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}
@font-face {
    font-family: "Fraunces";
    src: url("../fonts/fraunces-light.woff2") format("woff2");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}
/* ==================================================
   ROOT
================================================== */
:root {
    --font-body: "Geist", Helvetica, Arial, sans-serif;
    --font-heading: "Fraunces", "Times New Roman", Times, serif;
    --red: "#ce0e2d";
    --black: "#000";
}
/* ==================================================
   BASE
================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin:0;
    padding:0;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color:var(--black);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 300;
}