/**
 * 𝐍𝐄𝐖 𝐂𝐒𝐒 𝐒𝐄𝐂𝐓𝐈𝐎𝐍
 * This is the default CSS reset.
**/
* {
    -webkit-font-smoothing: antialiased;
    font-variant-ligatures: none;
    font-size: inherit;
    font-weight: normal;
    line-height: 1.6;
    overflow-wrap: break-word;
    word-wrap: break-word;
    box-sizing: border-box;
    direction: ltr;
    outline: 0;
    border: 0;
    border-radius: 0;
    padding: 0;
    margin: 0;
    position: relative;
    transform-origin: center;
    box-shadow: none;
    opacity: 1;
    caret-color: white;
}

html, body {
    background: #F9F9FF;
    text-align: left;
}

h1 { font-size: 40px; }
h2 { font-size: 34px; }
h3 { font-size: 28px; }
h4, h5, h6 { font-size: 22px; }
p, span, strong, b, u, a, div { font-size: 18px; }
strong, b { font-weight: bold; }
u { text-decoration: underline; }

section, div, code, blockquote, h1, h2, h3, h4, h5, h6, img {
    display: block;
}

