/* Reset CSS */

/* Box sizing rules */
html {
    box-sizing: border-box;
  }
  
  *, *:before, *:after {
    box-sizing: inherit;
  }
  
  /* Remove default padding and margin */
  body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
  }
  
  /* Remove list styles on ul, ol elements */
  ul, ol {
    list-style: none;
  }
  
  /* Set default font family and size */
  body {
    font-family: Arial, sans-serif;
    font-size: 16px;
  }
  
  /* Remove default hyperlink styles */
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Remove outline on focused elements */
  :focus {
    outline: 0;
  }
  
  /* Additional styles go here */
  
  