/*
    Resources used:
    - https://cutcodedown.com/article/whats_wrong_with_YOUR_website_part4
    - https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing
*/

/* fixes some subtle alignment issues */
*, *::before, *::after {
    box-sizing: border-box;
}

/* blanket reset */
html, body, div, section, article,
table, tr, td, th, caption,
form, fieldset,
address, blockquote,
figure, figcaption
h1, h2, h3, h4, h5, h6,
hr, ul, ol, li,
p, img {
    margin: 0;
    padding: 0;
    border: none;

    font-weight: normal;
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
}

/* personal preference */

html {
    font-size: 1rem;
    line-height: 1.5;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
    margin: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    display: block;
    max-width: 100%;
    height: 100%;
}

details summary {
    cursor: pointer;
    user-select: none;
}
