@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 1rem;
    color: #000;
    font-size: 16px;
    font-family: 'Inter', sans-serif !important;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #fff;
}

p,
li {    
    line-height: 1.75;
}

.page-header {
    border-bottom: 4px solid rgb(255 228 22);
}

ul {
    margin-bottom: 2.5rem;
}

li {
    margin-bottom: 0.75rem !important
}

h1 {
    text-align: center;
    font-size: 2rem;
    line-height: 1.5;
    font-weight: 700;
}

h2 {
    text-align: center;
    margin-bottom: 1.5rem !important;
    font-weight: 600;
}

hr {
    margin: 2.5rem 0;
    border: 2px solid rgb(255 228 22);
}

ol {
    counter-reset: item;
    list-style-type: none;
    margin-top: 5px;
    padding-left: 10px;
}

ol>li {
    counter-increment: item;
}

ol>li::before {
    content: counters(item, '.') ' - ';
    font-weight: 700;
}


@media print {
    .print-block {
        display: block !important
    }

    p,
    li {
        font-size: 1.5rem;
    }   

    body {
        margin: 0;
        paading: 2rem;
    }

    a:after,
    a[href^="http://"]::after,
    a[href^="https://"]::after {
        content: " (" attr(href) ")" !important;
        font-size: 1rem
    }

    a[href^="#"]:after {
        display: block !important;
        word-wrap: break-word;
        font-size: 1.75rem
    }

    a,
    a:after {
        word-wrap: break-word;
        word-break: break-word;
        font-size: 1.75rem
    }
}