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

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

/* No disc for unordered lists */
ul {
    list-style: none;
}

/* inherit typography for forms and buttons */
input,
textarea,
select,
button {
    color:inherit;
    font: inherit;
    letter-spacing: inherit;
}

input,
textarea,
button {
    border: none;
}

button {
    cursor: pointer;
}

/* Set core body defaults */
body {
    min-height: 100vh;
    scroll-behavior: smooth;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

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

/* Natural flow and rhythm in articles by default */
article > * + * {
    margin-top: 1em;
}

