@import url("https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&family=Manrope:wght@200..800&display=swap");

:root {
    --color-bg: #f6f7f9; /* Background site */
    --color-text: #434a4f; /* Color text */
    --color-primary: #007dc2; /* Color primary */
    --color-secondary: #8b9eb1; /* Color secondary */
    --font-primary: "Manrope", sans-serif; /* Primary font */
    --font-secondary: "Gabarito", sans-serif; /* Secondary font */
    --container-width: 1400px; /* Container width */
    --container-offset: 20px; /* Container offset */
    --color-white: #fff; /* Color white */
    --color-dark: #265170; /* 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;
}
