/* =====================================================
   Base styles
   Reglas globales y normalización del sitio
===================================================== */

/* =====================================================
   Reset / Normalización
===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Padding y borde no afectan el tamaño total */

    list-style: none;
    text-decoration: none;
}

/* =====================================================
   Tipografía base
===================================================== */
body {
    font-family: 'Inconsolata', monospace;
    background-color: black;
    color: white;

    line-height: 1.6;
}

/* =====================================================
   Textos base
===================================================== */
p {
    font-size: 90%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

/* =====================================================
   Enlaces
===================================================== */
a {
    color: inherit;
}

/* =====================================================
   Listas
===================================================== */
ul {
    padding-left: 0;
}
