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

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
  background-color: #fffefe;
  color: #242424;
  font-family: sans-serif;
  font-weight: 400;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: $font-headings; */
  font-family: sans-serif;
  font-weight: 500;
}

h1 {
  font-size: 72px;
}

h2 {
  font-size: 39px;
}

h3 {
  font-size: 31px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

p {
  font-size: 16px;
}

/* @font-face {
  font-family: Blackgold;
  src: url("/fonts/Blackgold.otf");
} */

.heroWrapper {
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
}
.logoContainer {
  height: 30%;
  margin: 0 20px;

  /* > div {
    position: unset !important;
  } */
}
.logo {
  object-fit: contain;
  width: 100% !important;
  position: relative !important;
  height: unset !important;
}

.heroNav {
  margin-top: 32px;
  width: 60%;
  margin-top: 104px;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-evenly;
  align-items: center;
  font-size: 27px;
  /* font-family: $font-headings; */
  color: #69615c;
}
.link {
  margin-right: 24px;
}

/* @media screen and (min-width: $tablet) {
  .heroWrapper {
    .heroNav {
      flex-flow: row wrap;
    }
  }
}

@media screen and (min-width: $desktop) {
  .heroWrapper {
    .heroNav {
      margin-top: 160px;
      justify-content: space-between;
    }
  }
} */
