@use "../base/mixins/media-query-mx" as mx;
/* Box sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin and padding */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
dl,
dd,
ol,
ul,
figure,
hr,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

body {
  height: 100vh;
  @include mx.responsive-body;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
}

/* Remove default border */
img,
fieldset {
  border: 0;
}

/* Remove link underlines */
a {
  text-decoration: none;
  color: inherit;
}

/* Inherit fonts for form elements */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove outline on buttons (optional, but be careful for accessibility) */
button {
  background: none;
  border: none;
  cursor: pointer;
}
