@import url("https://fonts.googleapis.com/css2?family=Cormorant+Infant:ital,wght@0,300..700;1,300..700&family=Manrope:wght@200..800&display=swap");

:root {
    --color-bg: #ecebe9; /* Background site */
    --color-text: #1a1a1a; /* Color text */
    --color-primary: #1b274f; /* Color primary */
    --color-secondary: #535765; /* Color secondary */
    --font-primary: "Manrope"; /* Primary font */
    --font-secondary: "Cormorant Infant", serif; /* Secondary font */
    --container-width: 1400px; /* Container width */
    --container-offset: 20px; /* Container offset */
    --color-white: #fff; /* Color white */
    --color-dark: #000; /* Color dark */
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    background-color: var(--color-bg);
    font-family: var(--font-primary), var(--font-secondary);
    color: var(--color-text);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-secondary);
    font-weight: 500;
}
