html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', 'Source Sans Pro', sans-serif;
  font-size: 16px;
  word-wrap: break-word;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

@media print {
  html,
  body,
  div {
    width: auto;
    height: auto !important;
    float: none !important;
    position: static !important;
    overflow: visible !important;
    page-break-inside: auto;
  }
}

body::-webkit-scrollbar {
  width: 8px;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.2);
}

body::-webkit-scrollbar-thumb {
  background-color: #f6cf89;
  outline: none;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4 {
  margin-top: 0px;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.3rem;
}

h4 {
  font-size: 1.2rem;
}

a {
  color: #8c6b4c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  line-height: 1.6;
  margin: 1rem 0;
}

input[type='radio'] {
  height: 20px;
  width: 20px;
}

/* hide the ugly number spinners on firefox, show on hover and focus */
input[type='number'] {
  -moz-appearance: textfield;
}

input[type='number']:hover,
input[type='number']:focus {
  -moz-appearance: number-input;
}

@media print {
  html,
  body {
    font-size: 12px;
  }
}

/* remove select arrow on IE11 */
select::-ms-expand {
  display: none;
}

#app {
  height: 100%;
}
