@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800&display=swap');

:root {
    --color-texto-principal: #0d47a1;
    --color-texto-secundario: #595858;
    
    --color-secundario: #1976d2;
    --color-terciario: #1175B8;
    --color-fondo: #f5f5f5;
    --color-texto: #212121;
    --fuente-principal: 'Poppins', sans-serif;

    --color-blanco: #ffffff;
    --color-gris-oscuro1: #2B2A2A;
    --color-gris-oscuro2: #222222;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--fuente-principal);
    font-size: 16px;
    font-weight: 400;
    background-color: var(--color-fondo);
    color: var(--color-texto-secundario);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}