/* Universal Selector */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* HTML5 Display Reset */
  article, aside, details, figcaption, figure,
  footer, header, main, nav, section, summary {
    display: block;
  }
  
  /* List Style Reset */
  ol, ul {
    list-style: none;
  }
  
  /* Quotes Reset */
  blockquote, q {
    quotes: none;
  }
  blockquote::before, blockquote::after,
  q::before, q::after {
    content: '';
  }
  
  /* Table Reset */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  /* Input, Button Reset */
  button, input, select, textarea {
    font: inherit;
    color: inherit;
    border: none;
    background: none;
    outline: none;
    padding: 0;
  }
  
  /* Image Reset */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Anchor Tag Reset */
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Body Reset */
  body {
    line-height: 1.5;
    font-size: 100%;
    background: none;
    font-family: sans-serif;
  }