/* Default reset CSS */

*,
*::before,
*::after {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   border: none;
}
 
 html,
 body,
 address,
 applet,
 article,
 blockquote,
 div,
 dl,
 dt,
 fieldset,
 figure,
 footer,
 form,
 h1,
 h2,
 h3,
 h4,
 h5,
 h6,
 header,
 iframe,
 img,
 legend,
 section,
 main,
 object,
 ol,
 p,
 pre,
 ul {
   display: block;
 }

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}
