:root {
  --white: #E5E6F9;
}


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

/* Prevents horizontal overflow */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font: 16px "Lucida Grande", Helvetica, Arial, sans-serif;
  background-color: #2e2a2a;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  overflow-x: hidden;
  overflow-y: scroll;
}



main {
  position: relative;
  min-height: 100vh;
  /* Full viewport height */
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5em;
  text-align: center;
  color: white;
  font-family: Arial, sans-serif;
  max-width: 100%;
}

main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  /* Fixes horizontal overflow */
  height: 100%;
  background: url("../images/hero.jpg") no-repeat top center / auto 100%;
  background-size: cover;
  background-attachment: fixed;
  z-index: -1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  main {
    padding: 2em;
  }

  main::before {
    background-attachment: scroll;
    /* Fixes mobile parallax issue */
  }
}

#map {
  height: 50%;
}

a.targetLink,
a.targetLink:visited,
a.targetLink:link {
  color: rgb(27, 26, 26);
  text-decoration: underline;
}

.nosifer-regular {
  font-family: "Nosifer", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.plaster-regular {
  font-family: "Plaster", system-ui;
  font-weight: 400;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}