html {
    box-sizing: border-box; 
  }
  
  *,
  *:before,
  *:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
  }
  
  ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-size: inherit;
    font-weight: 400;
    margin: 0;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  button {
    font-family: inherit;
    background-color: inherit;
    border: none;
    border-radius: none;
    padding: 0;
    cursor: pointer;
  }
  
  input,
  textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
  }
  
  input:placeholder,
  textarea:placeholder {
    font-family: inherit;
    font-size: inherit;
  }
  
  input:focus,
  textarea:focus {
    outline: none;
  }