/* ========================================
   CONFIGURACIÓN GENERAL DEL SITIO
======================================== */

:root{

  --color-bg:#0f0f0f;
  --color-surface:#171717;

  --color-text:#ffffff;
  --color-muted:#9d9d9d;

  --color-primary:#b89b63;

}

/* ========================================
   REINICIO DE ESTILOS DEL NAVEGADOR
======================================== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* ========================================
   COMPORTAMIENTO GENERAL DEL SITIO
======================================== */

html{
  scroll-behavior:smooth;
}

body{
  background:var(--color-bg);
  color:var(--color-text);

  font-family:Arial, Helvetica, sans-serif;
  line-height:1.5;
}

/* ========================================
   ENLACES
======================================== */

a{
  color:inherit;
  text-decoration:none;
}

/* ========================================
   IMÁGENES
======================================== */

img{
  display:block;
  max-width:100%;
}

/* ========================================
   LISTAS
======================================== */

ul,
ol{
  list-style:none;
}

/* ========================================
   FORMULARIOS
======================================== */

button,
input,
textarea,
select{
  font:inherit;
}

/* ========================================
   TABLAS
======================================== */

table{
  width:100%;
  border-collapse:collapse;
}