*,
:after,
:before {
  box-sizing: border-box;
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  margin: 0;
}


#landing {
  height: 100vh;
  background-size: cover;
  background-position: center;
}

@font-face {
  font-family: 'Ampere';
  font-style: normal;
  font-weight: 300;
  src: url('../assets/fonts/Ampere-Light.woff2') format('woff2');
}

@font-face {
  font-family: 'Ampere';
  font-style: normal;
  font-weight: 600;
  src: url('../assets/fonts/Ampere-SemiBold.woff2') format('woff2');
}

body {
  font-family: 'Ampere', sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.16em;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

p:not(:last-child) {
  margin-bottom: 1em;
}

.fw-semibold {
  font-weight: 600;
}

.address {
  --position: 25px;
  --width: 190px;

  position: absolute;
  top: var(--position);
  left: var(--position);
  width: var(--width);
  border-radius: 7.7px;
  padding: 12px;
  background-color: #f0ebdb;

  @media (min-width: 992px) {
    --position: 28px;
  }
}

.logo {
  position: absolute;
  top: 50vh;
  left: 50vw;
  transform: translate(-50%, -50%);
  width: 73vw;
}

@supports (top: 50dvh) {
  .logo {
    top: 50dvh;
  }
}
