:root {
  --c-text: #2d2d2c;
  --c-inputLabel: #979da6;
  --c-inputLabelOutline: #979797;
  --c-primaryButtonDisabled: #f2f2f2;
  --c-primaryButton: #f2b138;
  --c-primaryButtonHover: #c98f23;
  --c-primaryButtonActive: #4c3b1c;
  --c-primaryButtonFocus: #f2b138;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: PTSansPro;
  font-weight: 300;
  letter-spacing: 0;
  font-size: 15px;
  color: var(--c-text);
  line-height: 30px;
  font-style: normal;
  min-height: 100vh;
  max-width: 100vw;
  overflow-x: hidden;
  margin: 0;
}

label {
  font-family: PTSansPro;
  font-weight: 700;
  letter-spacing: 0;
  font-size: 15px;
  color: var(--c-text);
  line-height: 30px;
  font-style: normal;
}

input::placeholder,
input::-moz-placeholder,
input::-webkit-input-placeholder {
  font-family: PTSansPro;
  font-weight: 300;
  letter-spacing: 0;
  font-size: 15px;
  color: var(--c-inputLabel);
  line-height: 50px;
  font-style: italic;
}

h1 {
  font-family: Hermann;
  color: var(--c-text);
  letter-spacing: 5px;
  font-size: 35px;
  font-weight: 400;
}

h2 {
  font-family: Hermann;
  color: var(--c-text);
  letter-spacing: 4px;
  font-size: 30px;
  font-weight: 400;
}

h3 {
  font-family: Hermann;
  color: var(--c-text);
  letter-spacing: 0;
  font-size: 40px;
  font-weight: 900;
}

p, h1, h3 {
  margin: 0;
}

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

img {
  max-width: 100%;
}

button {
  padding: 0;
}

@media (min-width: 992px) {
  h1 {
    font-size: 40px;
  }
}