/* assets/css/reset.css */

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

/* Set baseline font-size to 62.5% for easier rem calculations (1rem = 10px) */
/*html {*/
/*  font-size: 62.5%;*/
/*  scroll-behavior: smooth;*/
/*  overflow-x: hidden;*/
/*}*/

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

/* Body defaults */
/*body {*/
/*  min-height: 100vh;*/
/*  text-rendering: optimizeSpeed;*/
/*  line-height: 1.5;*/
/*  -webkit-font-smoothing: antialiased;*/
/*  -moz-osx-font-smoothing: grayscale;*/
/*  overflow-x: hidden;*/
/*  width: 100%;*/
/*}*/

/* Update these sections */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  /* REMOVE overflow-x: hidden; */
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* REMOVE overflow-x: hidden; */
  width: 100%;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'],
ul:not([class]),
ol:not([class]) {
  list-style: none;
}
