@font-face {
    font-family: 'new_helvetica';
    src: url('/font/HelveticaNeue-Condensed Bold.ttf');
}

html {
  box-sizing: border-box;
  font-size: 65%;
}

body {
  font-family: new_helvetica, sans-serif;
  font-weight: bold;
  font-style: normal;
  color: black;

  font-kerning: normal;
  font-feature-settings: "kern" on;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;

  font-size: 4.4rem;
  line-height: 4.4rem;
  letter-spacing: 0.01em;
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.075em;

  margin: 4.4rem;
}

@media only screen and (max-width: 600px) {
  body {
    font-size: 3.4rem;
    line-height: 3.4rem;
    margin: 3.4rem;
  }
}

@media only screen and (max-width: 400px) {
  body {
    font-size: 2.4rem;
    line-height: 2.4rem;
    margin: 2.4rem;
  }
}

h1,
address {
  margin: 0;
  margin-bottom: 1em;
  padding: 0;

  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}

h1 {
  text-transform: uppercase;
}

a {
  color: inherit;
}