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

/* Margin and padding reset */
body,
h1, h2, h3, h4, h5, h6,
p,
ul, ol,
dl, dd, dt,
figure,
blockquote,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

/* Typography reset */
body,
button,
input,
select,
textarea {
  font-family: Arial, sans-serif;
}

/* List reset */
ul, ol {
  list-style: none;
}

/* Other element resets */
a {
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}

/* Resetting specific elements */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

input, textarea {
  border: none;
  outline: none;
}

/* Global styles */
body {
  line-height: 1.5;
}

/* Add your own custom styles below this line */
