@import url("./fonts/index.css");

:root {
  --dk: #000000; /*Black*/
  --md: #d7cfc5; /*Beige*/
  --li: #f8f8f1; /*Alabaster*/ /*rgb(255, 248, 233)*/
  --accent1: #c8c0b6; /*Beige Accent (Lighter)*/
  --accent2: #3d3028; /*Brown Accent (Darker)*/
  --extra: #898477; /*Intermediate between accents*/
  
  /*Might have to change for paid typeface*/
  --title: "Boska";
  --subtitle: "PinyonScript";
  --heading: "Cardo";
  --text: "Cardo";
  --plain: "Commissioner";
}

::selection {
  background-color: var(--md);
  color: var(--li);
}

*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 62.5%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0 0 1em;
}
p,
ul,
ol {
  font-size: 1em;
}
ul {
  margin: 0 0 1em 25px;
  list-style: none;
}
h1 {
  font-size: 3em;
  font-weight: 800;
  font-family: var(--plain);
}
h2 {
  font-size: 2em;
  font-weight: 600;
  font-family: var(--title);
}
h3 {
  font-size: 1.8em;
  font-weight: 600;
  font-family: var(--subtitle);
}
h4 {
  font-size: 1.6em;
  font-weight: 600;
  font-family: var(--heading);
}

/* 
WE ARE NOT USING h5 or h6 for INMA's WEB

h5 {
  font-size: 1.4em;
  font-weight: 500;
  font-family: var(--font-title);
}
h6 {
  font-size: 1.2em;
  font-weight: 500;
  font-family: var(--font-title);
} 
*/

html {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 62.5%;
  vertical-align: baseline;
  max-width: 100vw;
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  border: 0;
  vertical-align: baseline;
  color: var(--li);
  font-family: var(--text), Arial, Helvetica, sans-serif;
  background: var(--md);
  max-width: 100vw;
  display: flex;
  flex-direction: column;
  position: relative;
}

main {
  flex: 1 0 auto;
}

::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}
