*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
}
@media only screen and (max-width: 62.5em) {
  /* 1 rem = 9px, 9/16 = 50% */
  html {
    font-size: 56.25%;
  }
}

@media only screen and (max-width: 50em) {
  /* 1 rem = 8px, 8/16 = 50% */
  html {
    font-size: 50%;
  }
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 300;
  line-height: 1.6;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

input,
button,
select,
textarea {
  border: none;
  font-family: inherit;
  font-size: inherit;
  outline: none;
  color: inherit;
  background: inherit;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: inherit;
  background-color: inherit;
}
