/* Vars */
:root {
  --nav-height: 6rem;
  --color-primary: #B88E2F;
}

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

html, body {
  height: 100%;
  font-family: "Poppins";
  font-size: 16px;
  line-height: 1.5;
  color: black;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

button {
  font: inherit;
}

input {
  font: inherit;
}