iamspcristiano  CSS Reset

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  transition: all 0.5s ease-in-out;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
dl,
dd,
ul,
ol,
li,
figure,
hr,
fieldset,
legend {
  margin: 0;
  padding: 0;
}

/* Remove default padding */
ul,
ol {
  padding-left: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
}

/* Remove default quotes in blockquote */
blockquote,
q {
  quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

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

/* Form elements reset */
button,
input,
select,
textarea {
  font: inherit; /* Use the inherited font */
}
button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Default table styles */
table {
  border-collapse: collapse;
  width: 100%;
}
td,
th {
  padding: 0;
  border: 1px solid #ccc;
  text-align: left;
}

/* Ensure iframe and embed elements preserve aspect ratio */
iframe,
embed,
object {
  /* max-width: 100%; */
  border: 0;
  width: 100%;
  height: 80vh;;
}

/* Accessibility improvements */
a {
  text-decoration: none;
  color: inherit;
}
a:focus {
  outline: none;
}
a:focus-visible {
  outline: auto;
}
