.content {
    max-width: 850px; 
    margin: 30px auto;
    padding: 25px;
}
.content p {
    margin-top: 0;
    margin-bottom: 1rem;
}

.h-screen {
    height: auto !important;
}
@media (min-width: 1200px) {
    .content h2 {
        font-size: 1.5rem;
    }
}

.content h2 {
    font-size: calc(1.2rem + .9vw);
}
h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .8rem !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
    font-family: "Signika Negative", sans-serif;
}
.highlight {
    background: #FFF8E1;
    padding: 10px 20px;
    margin-bottom: 14px;
    border-radius: 8px;
}
.content ul {
	margin: 10px 0 10px 25px;
	line-height: 27px;
	list-style: inside;
	position: relative;
}
.content ul li {
    list-style: none;
    padding: 10px 10px 10px 40px;
    margin-left: -23px;
}

.content ul li {
	border-bottom: 1px solid #eeeeee
}
.content ul li:before {
    background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMDAiIGhlaWdodD0iMjAwIiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGZpbGw9Im5vbmUiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMS41IiBkPSJNMyAxMmMwLTQuMjQzIDAtNi4zNjQgMS4zMTgtNy42ODJDNS42MzYgMyA3Ljc1OCAzIDEyIDNjNC4yNDMgMCA2LjM2NCAwIDcuNjgyIDEuMzE4QzIxIDUuNjM2IDIxIDcuNzU4IDIxIDEyYzAgNC4yNDMgMCA2LjM2NC0xLjMxOCA3LjY4MkMxOC4zNjQgMjEgMTYuMjQyIDIxIDEyIDIxYy00LjI0MyAwLTYuMzY0IDAtNy42ODItMS4zMThDMyAxOC4zNjQgMyAxNi4yNDIgMyAxMloiLz48L3N2Zz4=);
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    margin-top: 5px;
    background-size: contain;
    left: -18px;
}
.content ul li.green:before {
    background: #22C55E;
    border-radius: 5px;
}
.content ul li.yellow:before {
    background: #EAB308;
    border-radius: 5px;
}
.content ul li.grey:before {
    background: #A3A3A3;
    border-radius: 5px;
}
ol {
    counter-reset: listNumbering;
}

ol li {
    padding: 10px 10px 10px 40px;
	list-style: none !important;
}

ol li {
    font-size: 1em;
    counter-increment: listNumbering;
}

ol li:before {
    content: counter(listNumbering,decimal-leading-zero) '.';
	font-size: 1em;
    font-weight: 600;
    padding-right: 10px;
    margin-left: -35px;
	font-family: "Sriracha", cursive;
}
footer {
    background: #f5f5f5;
    text-align: center;
}
section {
    padding: 30px 0;
}
footer .content {
    display: grid;
    grid-gap: 5px;
    grid-template-columns: repeat(auto-fit, 300px);
    justify-content: center;
    max-width: 1200px;
    margin: 0px auto;
}