/* ====================================================================
   TYPOGRAPHY — LY Arquitectos
   Montserrat via Google Fonts
==================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&display=swap');

/* Body base */
body {
  font-family: var(--f);
  background: var(--bg);
  color: var(--txt);
  overflow-x: hidden;
}

/* Headings reset */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--f);
  font-weight: 300;
  margin: 0;
  padding: 0;
}

/* Links */
a { color: var(--txt); text-decoration: none; }
a:hover { color: var(--acc); }

/* Imágenes */
img { max-width: 100%; height: auto; display: block; }

/* Lists reset */
ul, ol { list-style: none; margin: 0; padding: 0; }
