
/* Basic CSS Reset */

/* Box sizing border-box reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Remove default list styles */
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Remove default margin and padding from elements */
body, h1, h2, h3, h4, h5, h6, p, 
ul, ol, li, 
figure, figcaption, blockquote,
dl, dd, dt {
  margin: 0;
  padding: 0;
}

/* Remove default styles for anchor links */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove default styles for buttons */
button{
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: none;
  inset: none;
}

/* Set base font size and family */
body {
  font-family: sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

