/* ============================================================================
   PROYECTO: Portfolio Nico Falcón
   ARCHIVO: assets/css/reset.css
   PROPÓSITO: Normalización estricta del navegador.
   ============================================================================ */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}